Completed
Push — master ( 2aa4c0...d2f1f3 )
by Matze
06:57
created
src/MessageQueue/Gateway.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
     /**
106 106
      * @param string $eventType
107 107
      * @param int $since
108
-     * @return Generator|Job[]
108
+     * @return Generator
109 109
      */
110 110
     public function getEventsByTypeGenerator(string $eventType = null, int $since = 0) : Generator
111 111
     {
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      */
60 60
     public function addEvent(AbstractEvent $event, int $timestamp = 0) : Job
61 61
     {
62
-        $jobId = $this->generateUniqueId('jobid:' . $event->getEventName());
62
+        $jobId = $this->generateUniqueId('jobid:'.$event->getEventName());
63 63
         $jobId = sprintf('%s:%s', $event->getEventName(), $jobId);
64 64
 
65 65
         $job = new Job($event, $jobId, $timestamp);
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         $pipeline = $this->getRedis()->pipeline(['fire-and-forget' => true]);
81 81
         if (empty($job->timestamp)) {
82 82
             // immediate execution in background
83
-            $pipeline->lpush(self::QUEUE_IMMEDIATE, $job->jobId . '#' . $serialized);
83
+            $pipeline->lpush(self::QUEUE_IMMEDIATE, $job->jobId.'#'.$serialized);
84 84
         } else {
85 85
             // delayed execution
86 86
             $pipeline->hset(self::META_DATA, $job->jobId, $serialized);
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
         $keys = [];
122 122
         foreach ($resultRaw as $jobId => $timestamp) {
123
-            if (empty($eventType) || strpos($jobId, $eventType . ':') === 0) {
123
+            if (empty($eventType) || strpos($jobId, $eventType.':') === 0) {
124 124
                 $keys[$jobId] = $timestamp;
125 125
             }
126 126
         }
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
         $immediate = $this->getRedis()->lrange(self::QUEUE_IMMEDIATE, 0, 100);
178 178
         foreach ($immediate as $rawJob) {
179 179
             list($jobId, $rawJob) = explode('#', $rawJob, 2);
180
-            if (empty($eventType) || strpos($jobId, $eventType . ':') === 0) {
180
+            if (empty($eventType) || strpos($jobId, $eventType.':') === 0) {
181 181
                 /** @var Job $job */
182 182
                 $job = unserialize(base64_decode($rawJob));
183 183
                 yield $job->jobId => $job;
Please login to merge, or discard this patch.
src/EventDispatcher/JobEvent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     public function __construct(string $type, Job $job)
28 28
     {
29 29
         parent::__construct($type);
30
-        $this->job  = $job;
30
+        $this->job = $job;
31 31
     }
32 32
 
33 33
     /**
Please login to merge, or discard this patch.
src/Middleware/Cache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,6 +127,6 @@
 block discarded – undo
127 127
      */
128 128
     private function generateCacheKey(Request $request) : string
129 129
     {
130
-        return self::PREFIX . $request->getRequestUri();
130
+        return self::PREFIX.$request->getRequestUri();
131 131
     }
132 132
 }
Please login to merge, or discard this patch.
scripts/bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 use BrainExe\Core\Core;
4 4
 
5
-require_once __DIR__ . '/../vendor/autoload.php';
5
+require_once __DIR__.'/../vendor/autoload.php';
6 6
 
7
-define('ROOT', realpath(__DIR__ . '/..') . '/');
7
+define('ROOT', realpath(__DIR__.'/..').'/');
8 8
 
9 9
 return (new Core())->boot();
Please login to merge, or discard this patch.
scripts/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use Symfony\Component\HttpFoundation\Request;
6 6
 
7 7
 /** @var Container $dic */
8
-$dic = include __DIR__ . '/../src/bootstrap.php';
8
+$dic = include __DIR__.'/../src/bootstrap.php';
9 9
 
10 10
 $request = Request::createFromGlobals();
11 11
 
Please login to merge, or discard this patch.
src/Core.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      */
17 17
     public function boot() : Container
18 18
     {
19
-        $fileName = ROOT . 'cache/dic.php';
19
+        $fileName = ROOT.'cache/dic.php';
20 20
         /** @var Container $dic */
21 21
         if (!is_file($fileName)) {
22 22
             $rebuild = new Rebuild();
Please login to merge, or discard this patch.
src/AnnotationLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         $this->builders  = $builders;
43 43
         $this->reader    = new IndexedReader(new AnnotationReader());
44 44
 
45
-        AnnotationRegistry::registerLoader(function ($class) {
45
+        AnnotationRegistry::registerLoader(function($class) {
46 46
             return class_exists($class);
47 47
         });
48 48
     }
Please login to merge, or discard this patch.
src/DependencyInjection/CompilerPass/ConfigCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         $locator = new FileLocator([
25 25
             ROOT,
26
-            ROOT . 'app/',
26
+            ROOT.'app/',
27 27
         ]);
28 28
 
29 29
         $xmlLoader = new XmlFileLoader($container, $locator);
Please login to merge, or discard this patch.
src/Middleware/CatchUserException.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     }
81 81
 
82 82
     /**
83
-     * @param Throwable $exception
83
+     * @param UserException $exception
84 84
      * @param Request $request
85 85
      * @param Response $response
86 86
      */
Please login to merge, or discard this patch.