Passed
Push — master ( 307d74...86fa88 )
by teng
02:07 queued 19s
created
src/poker/application/AbstractApplication.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
  */
13 13
 abstract class AbstractApplication
14 14
 {
15
-	/**
16
-	 * 运行应用程序
17
-	 */
18
-	abstract public function run();
15
+    /**
16
+     * 运行应用程序
17
+     */
18
+    abstract public function run();
19 19
 }
Please login to merge, or discard this patch.
tests/TestCase.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,5 +15,5 @@
 block discarded – undo
15 15
  */
16 16
 abstract class TestCase extends PHPUnitTestCase
17 17
 {
18
-	use MockeryPHPUnitIntegration;
18
+    use MockeryPHPUnitIntegration;
19 19
 }
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,4 +15,4 @@
 block discarded – undo
15 15
 mb_regex_encoding('UTF-8');
16 16
 mb_internal_encoding('UTF-8');
17 17
 
18
-require_once dirname(__DIR__) . '/vendor/autoload.php';
18
+require_once dirname(__DIR__).'/vendor/autoload.php';
Please login to merge, or discard this patch.