GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( da45b8...91983c )
by Simon
03:00
created
src/EventStore/LaravelEventStore.php 3 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Illuminate\Database\QueryException;
7 7
 use SmoothPhp\Contracts\Domain\DomainEventStream;
8 8
 use SmoothPhp\Contracts\Domain\DomainMessage;
9
-use SmoothPhp\Contracts\EventStore\DomainEventStreamInterface;
10 9
 use SmoothPhp\Contracts\EventStore\EventStore;
11 10
 use SmoothPhp\Contracts\EventStore\EventStreamNotFound;
12 11
 use SmoothPhp\Contracts\Serialization\Serializer;
Please login to merge, or discard this patch.
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -54,10 +54,10 @@  discard block
 block discarded – undo
54 54
     public function load($id)
55 55
     {
56 56
         $rows = $this->db->table($this->eventStoreTableName)
57
-                         ->select(['uuid', 'playhead', 'metadata', 'payload', 'recorded_on'])
58
-                         ->where('uuid', $id)
59
-                         ->orderBy('playhead', 'asc')
60
-                         ->get();
57
+                            ->select(['uuid', 'playhead', 'metadata', 'payload', 'recorded_on'])
58
+                            ->where('uuid', $id)
59
+                            ->orderBy('playhead', 'asc')
60
+                            ->get();
61 61
         $events = [];
62 62
 
63 63
         foreach ($rows as $row) {
@@ -101,16 +101,16 @@  discard block
 block discarded – undo
101 101
     {
102 102
         try {
103 103
             $this->db->table($this->eventStoreTableName)
104
-                     ->insert(
105
-                         [
106
-                             'uuid'        => (string)$domainMessage->getId(),
107
-                             'playhead'    => $domainMessage->getPlayHead(),
108
-                             'metadata'    => json_encode($this->serializer->serialize($domainMessage->getMetadata())),
109
-                             'payload'     => json_encode($this->serializer->serialize($domainMessage->getPayload())),
110
-                             'recorded_on' => (string)$domainMessage->getRecordedOn(),
111
-                             'type'        => $domainMessage->getType(),
112
-                         ]
113
-                     );
104
+                        ->insert(
105
+                            [
106
+                                'uuid'        => (string)$domainMessage->getId(),
107
+                                'playhead'    => $domainMessage->getPlayHead(),
108
+                                'metadata'    => json_encode($this->serializer->serialize($domainMessage->getMetadata())),
109
+                                'payload'     => json_encode($this->serializer->serialize($domainMessage->getPayload())),
110
+                                'recorded_on' => (string)$domainMessage->getRecordedOn(),
111
+                                'type'        => $domainMessage->getType(),
112
+                            ]
113
+                        );
114 114
         } catch (\PDOException $ex) {
115 115
             if ($ex->getCode() == 23000) {
116 116
                 throw new DuplicateAggregatePlayhead((string)$domainMessage->getId(), $domainMessage->getPlayHead());
@@ -154,12 +154,12 @@  discard block
 block discarded – undo
154 154
     public function getEventsByType($eventTypes, $skip, $take)
155 155
     {
156 156
         $rows = $this->db->table($this->eventStoreTableName)
157
-                         ->select(['uuid', 'playhead', 'metadata', 'payload', 'recorded_on'])
158
-                         ->whereIn('type', $eventTypes)
159
-                         ->skip($skip)
160
-                         ->take($take)
161
-                         ->orderBy('recorded_on', 'asc')
162
-                         ->get();
157
+                            ->select(['uuid', 'playhead', 'metadata', 'payload', 'recorded_on'])
158
+                            ->whereIn('type', $eventTypes)
159
+                            ->skip($skip)
160
+                            ->take($take)
161
+                            ->orderBy('recorded_on', 'asc')
162
+                            ->get();
163 163
         $events = [];
164 164
 
165 165
         foreach ($rows as $row) {
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      */
78 78
     public function append($id, DomainEventStream $eventStream)
79 79
     {
80
-        $id = (string)$id; //Used to thrown errors if ID will not cast to string
80
+        $id = (string) $id; //Used to thrown errors if ID will not cast to string
81 81
 
82 82
         $this->db->beginTransaction();
83 83
 
@@ -103,17 +103,17 @@  discard block
 block discarded – undo
103 103
             $this->db->table($this->eventStoreTableName)
104 104
                      ->insert(
105 105
                          [
106
-                             'uuid'        => (string)$domainMessage->getId(),
106
+                             'uuid'        => (string) $domainMessage->getId(),
107 107
                              'playhead'    => $domainMessage->getPlayHead(),
108 108
                              'metadata'    => json_encode($this->serializer->serialize($domainMessage->getMetadata())),
109 109
                              'payload'     => json_encode($this->serializer->serialize($domainMessage->getPayload())),
110
-                             'recorded_on' => (string)$domainMessage->getRecordedOn(),
110
+                             'recorded_on' => (string) $domainMessage->getRecordedOn(),
111 111
                              'type'        => $domainMessage->getType(),
112 112
                          ]
113 113
                      );
114 114
         } catch (\PDOException $ex) {
115 115
             if ($ex->getCode() == 23000) {
116
-                throw new DuplicateAggregatePlayhead((string)$domainMessage->getId(), $domainMessage->getPlayHead());
116
+                throw new DuplicateAggregatePlayhead((string) $domainMessage->getId(), $domainMessage->getPlayHead());
117 117
             }
118 118
             throw  $ex;
119 119
         }
Please login to merge, or discard this patch.
src/EventBus/QueueToEventDispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     public function fire($job, $data)
37 37
     {
38
-        $payload = (json_decode($data['payload'],true));
38
+        $payload = (json_decode($data['payload'], true));
39 39
 
40 40
         $event = call_user_func([
41 41
                                     str_replace('.', '\\', $data['type']),
Please login to merge, or discard this patch.
src/EventBus/PushEventsThroughQueue.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -37,13 +37,13 @@
 block discarded – undo
37 37
     public function handle(DomainMessage $domainMessage)
38 38
     {
39 39
         $this->queue->push(QueueToEventDispatcher::class,
40
-                           [
41
-                               'uuid'        => (string)$domainMessage->getId(),
42
-                               'playhead'    => $domainMessage->getPlayHead(),
43
-                               'metadata'    => json_encode($this->serializer->serialize($domainMessage->getMetadata())),
44
-                               'payload'     => json_encode($this->serializer->serialize($domainMessage->getPayload())),
45
-                               'recorded_on' => (string)$domainMessage->getRecordedOn(),
46
-                               'type'        => $domainMessage->getType(),
47
-                           ]);
40
+                            [
41
+                                'uuid'        => (string)$domainMessage->getId(),
42
+                                'playhead'    => $domainMessage->getPlayHead(),
43
+                                'metadata'    => json_encode($this->serializer->serialize($domainMessage->getMetadata())),
44
+                                'payload'     => json_encode($this->serializer->serialize($domainMessage->getPayload())),
45
+                                'recorded_on' => (string)$domainMessage->getRecordedOn(),
46
+                                'type'        => $domainMessage->getType(),
47
+                            ]);
48 48
     }
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,11 +38,11 @@
 block discarded – undo
38 38
     {
39 39
         $this->queue->push(QueueToEventDispatcher::class,
40 40
                            [
41
-                               'uuid'        => (string)$domainMessage->getId(),
41
+                               'uuid'        => (string) $domainMessage->getId(),
42 42
                                'playhead'    => $domainMessage->getPlayHead(),
43 43
                                'metadata'    => json_encode($this->serializer->serialize($domainMessage->getMetadata())),
44 44
                                'payload'     => json_encode($this->serializer->serialize($domainMessage->getPayload())),
45
-                               'recorded_on' => (string)$domainMessage->getRecordedOn(),
45
+                               'recorded_on' => (string) $domainMessage->getRecordedOn(),
46 46
                                'type'        => $domainMessage->getType(),
47 47
                            ]);
48 48
     }
Please login to merge, or discard this patch.
src/Console/BuildLaravelEventStore.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
         Schema::connection($this->config->get('cqrses.eventstore_connection'))
60 60
               ->create($this->config->get('cqrses.eventstore_table'),
61
-                  function (Blueprint $table) {
61
+                  function(Blueprint $table) {
62 62
                       $table->increments('id');
63 63
                       $table->string('uuid', 56);
64 64
                       $table->integer('playhead')->unsigned();
Please login to merge, or discard this patch.
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
48 48
     public function handle()
49 49
     {
50 50
         if ($this->option('force') == 'true' || $this->confirm("Are you sure you want to make a new table '{$this->config->get('cqrses.eventstore_table')}'"
51
-                                                               . " on connection '{$this->config->get('cqrses.eventstore_connection')}'"
52
-                                                               . " Do you wish to continue?")
51
+                                                                . " on connection '{$this->config->get('cqrses.eventstore_connection')}'"
52
+                                                                . " Do you wish to continue?")
53 53
         ) {
54 54
             return $this->buildEventStoreTable();
55 55
         }
@@ -62,16 +62,16 @@  discard block
 block discarded – undo
62 62
     protected function buildEventStoreTable()
63 63
     {
64 64
         Schema::connection($this->config->get('cqrses.eventstore_connection'))
65
-              ->create($this->config->get('cqrses.eventstore_table'),
66
-                  function (Blueprint $table) {
67
-                      $table->increments('id');
68
-                      $table->string('uuid', 56);
69
-                      $table->integer('playhead')->unsigned();
70
-                      $table->text('metadata');
71
-                      $table->text('payload');
72
-                      $table->string('recorded_on', 32);
73
-                      $table->text('type');
74
-                      $table->unique(['uuid', 'playhead']);
75
-                  });
65
+                ->create($this->config->get('cqrses.eventstore_table'),
66
+                    function (Blueprint $table) {
67
+                        $table->increments('id');
68
+                        $table->string('uuid', 56);
69
+                        $table->integer('playhead')->unsigned();
70
+                        $table->text('metadata');
71
+                        $table->text('payload');
72
+                        $table->string('recorded_on', 32);
73
+                        $table->text('type');
74
+                        $table->unique(['uuid', 'playhead']);
75
+                    });
76 76
     }
77 77
 }
78 78
\ No newline at end of file
Please login to merge, or discard this patch.
src/Console/EventStoreBranchSwap.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-     * @param $branch
82
+     * @param string|null $branch
83 83
      */
84 84
     protected function replaceEnvConfig($branch)
85 85
     {
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     protected function getGitBranch()
69 69
     {
70 70
         $shellOutput = [];
71
-        exec('git branch | ' . "grep ' * '", $shellOutput);
71
+        exec('git branch | '."grep ' * '", $shellOutput);
72 72
         foreach ($shellOutput as $line) {
73 73
             if (strpos($line, '* ') !== false) {
74 74
                 return trim(strtolower(str_replace(['* ', '/'], ['', '-'], $line)));
@@ -83,9 +83,9 @@  discard block
 block discarded – undo
83 83
      */
84 84
     protected function replaceEnvConfig($branch)
85 85
     {
86
-        $envFilePath = base_path() . '/.env';
86
+        $envFilePath = base_path().'/.env';
87 87
 
88
-        $rebuildFunction = function ($data) use ($branch) {
88
+        $rebuildFunction = function($data) use ($branch) {
89 89
             if (stristr($data, 'DB_TABLE_EVENTSTORE')) {
90 90
                 return "DB_TABLE_EVENTSTORE={$branch}\n";
91 91
             }
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
             return $data;
94 94
         };
95 95
 
96
-        $contentArray = array_map($rebuildFunction,file($envFilePath));
96
+        $contentArray = array_map($rebuildFunction, file($envFilePath));
97 97
 
98
-        file_put_contents($envFilePath, implode('',$contentArray));
98
+        file_put_contents($envFilePath, implode('', $contentArray));
99 99
     }
100 100
 }
Please login to merge, or discard this patch.
src/StrongConsistency/PushEventThroughQueueWithCommandId.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,11 +46,11 @@
 block discarded – undo
46 46
         $this->queue->push(
47 47
             QueueToEventDispatcherWithCommandId::class,
48 48
             [
49
-                'uuid'        => (string)$domainMessage->getId(),
49
+                'uuid'        => (string) $domainMessage->getId(),
50 50
                 'playhead'    => $domainMessage->getPlayHead(),
51 51
                 'metadata'    => json_encode($this->serializer->serialize($domainMessage->getMetadata())),
52 52
                 'payload'     => json_encode($this->serializer->serialize($domainMessage->getPayload())),
53
-                'recorded_on' => (string)$domainMessage->getRecordedOn(),
53
+                'recorded_on' => (string) $domainMessage->getRecordedOn(),
54 54
                 'type'        => $domainMessage->getType(),
55 55
                 'command_id'  => $this->notificationsCommandBus->getLastCommandId(),
56 56
             ]
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      * PushEventsThroughQueue constructor.
28 28
      * @param Queue $queue
29 29
      * @param Serializer $serializer
30
-     * @param StrongConsistencyCommandBusMiddleware|CommandBus $notificationsCommandBus
30
+     * @param StrongConsistencyCommandBusMiddleware $notificationsCommandBus
31 31
      */
32 32
     public function __construct(
33 33
         Queue $queue,
Please login to merge, or discard this patch.
src/helpers.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
         }
17 17
 
18 18
         foreach ($commands as $command) {
19
-            while (!Cache::has((string)$command)) {
19
+            while (!Cache::has((string) $command)) {
20 20
                 usleep(1000);
21 21
 
22 22
                 if ($i > 8000) {
@@ -33,6 +33,6 @@  discard block
 block discarded – undo
33 33
      */
34 34
     function uuid()
35 35
     {
36
-        return (string)\Ramsey\Uuid\Uuid::uuid4();
36
+        return (string) \Ramsey\Uuid\Uuid::uuid4();
37 37
     }
38 38
 }
Please login to merge, or discard this patch.
src/StrongConsistency/StrongConsistencyCommandBusMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      */
34 34
     public function execute(Command $command)
35 35
     {
36
-        $this->lastCommandId = (string)$command;
36
+        $this->lastCommandId = (string) $command;
37 37
         $this->commandBus->execute($command);
38 38
     }
39 39
 
Please login to merge, or discard this patch.
src/EventBus/EventBusLogger.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,9 +29,9 @@
 block discarded – undo
29 29
      */
30 30
     public function handle(DomainMessage $domainMessage)
31 31
     {
32
-        $name = explode('.',$domainMessage->getType());
32
+        $name = explode('.', $domainMessage->getType());
33 33
 
34 34
         $name = preg_replace('/(?!^)[A-Z]{2,}(?=[A-Z][a-z])|[A-Z][a-z]/', ' $0', end($name));
35
-        $this->log->debug(trim(ucwords($name)) . " ({$domainMessage->getType()})");
35
+        $this->log->debug(trim(ucwords($name))." ({$domainMessage->getType()})");
36 36
     }
37 37
 }
38 38
\ No newline at end of file
Please login to merge, or discard this patch.