Completed
Push — master ( 091f4b...212c6c )
by Matze
03:51
created
src/Application/AppKernel.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
     }
111 111
 
112 112
     /**
113
-     * @param Response|mixed $response
113
+     * @param Response|null $response
114 114
      * @return Response
115 115
      */
116 116
     private function prepareResponse($response)
Please login to merge, or discard this patch.
src/Authentication/Controller/LoginController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @param Request $request
38
-     * @return JsonResponse
38
+     * @return UserVO
39 39
      * @Route("/login/", name="authenticate.doLogin", methods="POST")
40 40
      * @Guest
41 41
      */
Please login to merge, or discard this patch.
src/Authentication/RegisterTokens.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     use IdGeneratorTrait;
18 18
 
19 19
     /**
20
-     * @return string
20
+     * @return integer
21 21
      */
22 22
     public function addToken()
23 23
     {
Please login to merge, or discard this patch.
src/Console/ServerRunCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
             ->setTimeout(null)
69 69
             ->getProcess();
70 70
 
71
-        $process->run(function ($type, $buffer) use ($output, $input) {
71
+        $process->run(function($type, $buffer) use ($output, $input) {
72 72
             unset($type);
73 73
             if (!$input->getOption('quiet')) {
74 74
                 $output->write($buffer);
Please login to merge, or discard this patch.
src/DependencyInjection/CompilerPass/LocaleCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         $glob = $container->get('Glob');
29 29
 
30 30
         $locales = $glob->execGlob(ROOT . 'lang/*.po');
31
-        $locales = array_map(function ($file) {
31
+        $locales = array_map(function($file) {
32 32
             return basename($file, '.po');
33 33
         }, $locales);
34 34
 
Please login to merge, or discard this patch.
src/DependencyInjection/CompilerPass/RedisCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         $masterArguments = $this->getArguments($container, '');
27 27
 
28 28
         try {
29
-            $slaveArguments  = $this->getArguments($container, '.slave');
29
+            $slaveArguments = $this->getArguments($container, '.slave');
30 30
             $masterArguments['alias'] = 'master';
31 31
             $slaveArguments['alias']  = 'slave';
32 32
             $parameters = [$masterArguments, $slaveArguments];
Please login to merge, or discard this patch.
src/Traits/FileCacheTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,6 +51,6 @@
 block discarded – undo
51 51
      */
52 52
     private function getCacheFileName($name)
53 53
     {
54
-        return ROOT . 'cache/' . basename($name, '.php')  . '.php';
54
+        return ROOT . 'cache/' . basename($name, '.php') . '.php';
55 55
     }
56 56
 }
Please login to merge, or discard this patch.
src/Authentication/Token.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 
50 50
     /**
51 51
      * @param int $userId
52
-     * @return array[]|Generator
52
+     * @return Generator
53 53
      */
54 54
     public function getTokensForUser($userId)
55 55
     {
Please login to merge, or discard this patch.
src/MessageQueue/Gateway.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
     /**
104 104
      * @param string $eventType
105 105
      * @param integer $since
106
-     * @return Generator|Job[]
106
+     * @return Generator
107 107
      */
108 108
     public function getEventsByTypeGenerator($eventType = null, $since = 0)
109 109
     {
Please login to merge, or discard this patch.