Completed
Push — 3-code_coverage ( f13ab3...f911ac )
by Jakub
02:38 queued 01:05
created
src/Environment.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
       if($skipped->reason) {
148 148
         $reason = ": {$skipped->reason}";
149 149
       }
150
-      echo "Skipped $skipped->name$reason\n";
150
+      echo "skipped $skipped->name$reason\n";
151 151
     }
152 152
   }
153 153
 
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
@@ -147,7 +147,7 @@
 block discarded – undo
147 147
       if($skipped->reason) {
148 148
         $reason = ": {$skipped->reason}";
149 149
       }
150
-      echo "Skipped $skipped->name$reason\n";
150
+      echo "skipped $skipped->name$reason\n";
151 151
     }
152 152
   }
153 153
 
Please login to merge, or discard this patch.
src/TAssertions.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     if($success) {
20 20
       return;
21 21
     }
22
-    echo "Test $this->taskCount failed. $text\n";
22
+    echo "test $this->taskCount failed. $text\n";
23 23
   }
24 24
 
25 25
   /**
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
@@ -38,15 +38,15 @@
 block discarded – undo
38 38
       try {
39 39
         $reflection = new ReflectionMethod($class, $dataProvider);
40 40
         if(!$reflection->isPublic()) {
41
-          throw new InvalidDataProviderException("Method $className::$dataProvider is not public.");
41
+          throw new InvalidDataProviderException("method $className::$dataProvider is not public.");
42 42
         }
43 43
         $result = call_user_func([$class, $dataProvider]);
44 44
         if(!is_array($result)) {
45
-          throw new InvalidDataProviderException("Method $className::$dataProvider has to return an array.");
45
+          throw new InvalidDataProviderException("method $className::$dataProvider has to return an array.");
46 46
         }
47 47
         return $result;
48 48
       } catch(\ReflectionException $e) {
49
-        throw new InvalidDataProviderException("Method $className::$dataProvider does not exist.", 0, $e);
49
+        throw new InvalidDataProviderException("method $className::$dataProvider does not exist.", 0, $e);
50 50
       }
51 51
     }
52 52
     /** @var mixed $value */
Please login to merge, or discard this patch.