Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]
  • Loading branch information
StyleCIBot committed May 3, 2022
1 parent ee4a64d commit 5bf16c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Feature/ConfigurableFeaturesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.'()';
}
}

Expand All @@ -40,4 +40,4 @@ public function testHasFeatureReturnsTrueWhenFeatureIsEnabled()
$this->assertTrue(Features::enabled($feature));
}
}
}
}

0 comments on commit 5bf16c0

Please sign in to comment.