diff --git a/tests/AaaSmokeTest.php b/tests/AaaSmokeTest.php index 7271d05..0ee6950 100644 --- a/tests/AaaSmokeTest.php +++ b/tests/AaaSmokeTest.php @@ -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.' + ); } }