rkljw vor 9 Monaten
Ursprung
Commit
e3b2b8362e
3 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
  1. 1 0
      app/Tools/CommonService.php
  2. 1 1
      vendor/test/Cases/ExampleTest.php
  3. 1 2
      vendor/test/HttpTestCase.php

+ 1 - 0
app/Tools/CommonService.php

@@ -0,0 +1 @@
+<?php

+ 1 - 1
test/Cases/ExampleTest.php → vendor/test/Cases/ExampleTest.php

@@ -10,7 +10,7 @@ declare(strict_types=1);
  * @license  https://github.com/hyperf/hyperf/blob/master/LICENSE
  */
 
-namespace HyperfTest\Cases;
+namespace vendor\test\Cases;
 
 use Hyperf\Testing\TestCase;
 

+ 1 - 2
test/HttpTestCase.php → vendor/test/HttpTestCase.php

@@ -10,11 +10,10 @@ declare(strict_types=1);
  * @license  https://github.com/hyperf/hyperf/blob/master/LICENSE
  */
 
-namespace HyperfTest;
+namespace vendor\test;
 
 use Hyperf\Testing\Client;
 use PHPUnit\Framework\TestCase;
-
 use function Hyperf\Support\make;
 
 /**