Use correct phpcs configuration when running from Travis CI

This commit is contained in:
Ben Ramsey
2020-01-02 13:01:22 -06:00
parent ffc400e009
commit c0a2ef7d15
3 changed files with 8 additions and 6 deletions
+4 -2
View File
@@ -14,6 +14,8 @@ declare(strict_types=1);
namespace Ramsey\Uuid;
use function is_int;
/**
* Provides binary math utilities
*/
@@ -54,8 +56,8 @@ class BinaryUtils
$timeHi = hexdec($timeHi) & 0x0fff;
$timeHi |= $version << 12;
assert(\is_int($timeHi));
assert(is_int($timeHi));
return $timeHi;
}
}