Skip to content

Commit 2fd934b

Browse files
[PhpUnitBridge] CS fix
1 parent 94f3a86 commit 2fd934b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ClockMock.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public static function register($class)
9292
{
9393
$self = \get_called_class();
9494

95-
$mockedNs = [substr($class, 0, strrpos($class, '\\'))];
95+
$mockedNs = array(substr($class, 0, strrpos($class, '\\')));
9696
if (0 < strpos($class, '\\Tests\\')) {
9797
$ns = str_replace('\\Tests\\', '\\', $class);
9898
$mockedNs[] = substr($ns, 0, strrpos($ns, '\\'));

0 commit comments

Comments
 (0)