Completed
Branch master (6cb744)
by Jakub
07:44
created
src/Bridges/NetteDI/TestsRunner.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@
 block discarded – undo
5 5
 
6 6
 require_once __DIR__ . "/../../functions.php";
7 7
 
8
-use MyTester\TestCase,
9
-    MyTester\Environment,
10
-    Nette\Utils\Finder;
8
+use MyTester\TestCase;
9
+use MyTester\Environment;
10
+use Nette\Utils\Finder;
11 11
 
12 12
 /**
13 13
  * Tests Runner
Please login to merge, or discard this patch.
src/Tester.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 
4 4
 namespace MyTester;
5 5
 
6
-use Nette\Utils\Finder,
7
-    Nette\Utils\FileSystem;
6
+use Nette\Utils\Finder;
7
+use Nette\Utils\FileSystem;
8 8
 
9 9
 /**
10 10
  * Automated tests runner
Please login to merge, or discard this patch.
src/Environment.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,10 +45,10 @@
 block discarded – undo
45 45
     static::printLine($output . ". $text");
46 46
   }
47 47
    
48
-   /**
49
-   * @param string $results
50
-   * @return bool
51
-   */
48
+    /**
49
+     * @param string $results
50
+     * @return bool
51
+     */
52 52
   static function checkFailed(string $results): bool {
53 53
     $testsFailed = substr_count($results, " failed. ");
54 54
     return (bool) $testsFailed;
Please login to merge, or discard this patch.