Completed
Push — master ( 111167...d069a6 )
by Jakub
01:41
created
src/TAssertions.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         if ($success) {
23 23
             return;
24 24
         }
25
-        echo "Test $this->taskCount failed. $text\n";
25
+        echo "test $this->taskCount failed. $text\n";
26 26
     }
27 27
 
28 28
     /**
Please login to merge, or discard this patch.
src/Tester.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
             if ($skipped->reason) {
131 131
                 $reason = ": {$skipped->reason}";
132 132
             }
133
-            echo "Skipped $skipped->name$reason\n";
133
+            echo "skipped $skipped->name$reason\n";
134 134
         }
135 135
     }
136 136
 
Please login to merge, or discard this patch.
src/DataProvider.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,15 +42,15 @@
 block discarded – undo
42 42
             try {
43 43
                 $reflection = new ReflectionMethod($class, $dataProvider);
44 44
                 if (!$reflection->isPublic()) {
45
-                    throw new InvalidDataProviderException("Method $className::$dataProvider is not public.");
45
+                    throw new InvalidDataProviderException("method $className::$dataProvider is not public.");
46 46
                 }
47 47
                 $result = call_user_func([$class, $dataProvider]);
48 48
                 if (!is_array($result)) {
49
-                    throw new InvalidDataProviderException("Method $className::$dataProvider has to return an array.");
49
+                    throw new InvalidDataProviderException("method $className::$dataProvider has to return an array.");
50 50
                 }
51 51
                 return $result;
52 52
             } catch (\ReflectionException $e) {
53
-                throw new InvalidDataProviderException("Method $className::$dataProvider does not exist.", 0, $e);
53
+                throw new InvalidDataProviderException("method $className::$dataProvider does not exist.", 0, $e);
54 54
             }
55 55
         }
56 56
         return [];
Please login to merge, or discard this patch.