Skip to content

Commit

Permalink
Merge pull request #268 from hydephp/analysis-lKGG1k
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
caendesilva authored May 3, 2022
2 parents ee4a64d + 5bf16c0 commit 66d1782
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 66d1782

Please sign in to comment.