Passed
Push — master ( 1fe2f9...d2939f )
by huang
05:07
created
src/Server.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
 
12 12
 use FastD\ServiceProvider\SwooleServiceProvider;
13 13
 use FastD\Servitization\Server\HTTPServer;
14
-use swoole_server;
15 14
 use Symfony\Component\Console\Input\InputInterface;
15
+use swoole_server;
16 16
 
17 17
 /**
18 18
  * Class App.
Please login to merge, or discard this patch.
src/TestCase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
     /**
75 75
      * Returns the test database connection.
76 76
      *
77
-     * @return \PHPUnit_Extensions_Database_DB_IDatabaseConnection|null
77
+     * @return \PHPUnit_Extensions_Database_DB_DefaultDatabaseConnection|null
78 78
      */
79 79
     protected function getConnection()
80 80
     {
Please login to merge, or discard this patch.
src/Application.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     /**
56 56
      * AppKernel constructor.
57 57
      *
58
-     * @param $path
58
+     * @param string $path
59 59
      */
60 60
     public function __construct($path)
61 61
     {
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
     }
168 168
 
169 169
     /**
170
-     * @param $e
170
+     * @param Exception $e
171 171
      *
172 172
      * @return Response
173 173
      */
Please login to merge, or discard this patch.
src/Model/Database.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     }
55 55
 
56 56
     /**
57
-     * @param $query
57
+     * @param string $query
58 58
      *
59 59
      * @return bool|\PDOStatement
60 60
      */
Please login to merge, or discard this patch.
src/Console/Routing.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      * @param InputInterface  $input
40 40
      * @param OutputInterface $output
41 41
      *
42
-     * @return mixed
42
+     * @return integer
43 43
      */
44 44
     public function execute(InputInterface $input, OutputInterface $output)
45 45
     {
Please login to merge, or discard this patch.
src/Servitization/Server/UDPServer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      * @param $data
28 28
      * @param $clientInfo
29 29
      *
30
-     * @return mixed
30
+     * @return integer
31 31
      */
32 32
     public function doPacket(swoole_server $server, $data, $clientInfo)
33 33
     {
Please login to merge, or discard this patch.