From 5bf16c09031786bfa902c9116be35ca0fa22ffce Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Tue, 3 May 2022 14:23:57 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- tests/Feature/ConfigurableFeaturesTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Feature/ConfigurableFeaturesTest.php b/tests/Feature/ConfigurableFeaturesTest.php index ab8d8c6a..15976783 100644 --- a/tests/Feature/ConfigurableFeaturesTest.php +++ b/tests/Feature/ConfigurableFeaturesTest.php @@ -29,8 +29,8 @@ public function testHasFeatureReturnsTrueWhenFeatureIsEnabled() { $features = []; foreach (get_class_methods(Features::class) as $method) { - if (!str_starts_with($method, 'has') && $method !== 'enabled') { - $features[] = '\Hyde\Framework\Features::' . $method . '()'; + if (! str_starts_with($method, 'has') && $method !== 'enabled') { + $features[] = '\Hyde\Framework\Features::'.$method.'()'; } } @@ -40,4 +40,4 @@ public function testHasFeatureReturnsTrueWhenFeatureIsEnabled() $this->assertTrue(Features::enabled($feature)); } } -} \ No newline at end of file +}