Passed
Pull Request — master (#10)
by Alice
02:01
created
examples/Simple/simple.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 use Wonderland\Thread\Example\Simple\TestThread;
5 5
 use Wonderland\Thread\ThreadPool;
6 6
 
7
-require __DIR__.'/../../vendor/autoload.php';
7
+require __DIR__ . '/../../vendor/autoload.php';
8 8
 
9 9
 /**
10 10
  * @param $increment
Please login to merge, or discard this patch.
src/AbstractThread.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
 
84 84
 		if (null === $status) {
85 85
 			throw new ThreadException(
86
-				'Error. You must return a process status in '.get_class($this).':'.$this->getMethodName()
86
+				'Error. You must return a process status in ' . get_class($this) . ':' . $this->getMethodName()
87 87
 			);
88 88
 		}
89 89
 
Please login to merge, or discard this patch.