Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Dec 17, 2023
1 parent b5a3606 commit 822830d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/AaaSmokeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ public function smoke()
*/
public function php_version_satisfies_requirements()
{
$this->assertFalse(version_compare(PHP_VERSION, self::MIN_PHP_VERSION, '<'),
$this->assertFalse(
version_compare(PHP_VERSION, self::MIN_PHP_VERSION, '<'),
'PHP version ' . self::MIN_PHP_VERSION . ' or greater is required but only '
. PHP_VERSION . ' found.');
. PHP_VERSION . ' found.'
);
}
}

0 comments on commit 822830d

Please sign in to comment.