Skip to content
This repository was archived by the owner on Apr 7, 2021. It is now read-only.

Commit 089b9ed

Browse files
austinheapStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 1d5e9b0 commit 089b9ed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Jobs/Write.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@ public function handle()
6262
*/
6363
public function tags(): array
6464
{
65-
return array_merge(parent::tags(), [static::class . ':1']);
65+
return array_merge(parent::tags(), [static::class.':1']);
6666
}
6767
}

src/Jobs/WritePayload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,6 @@ public function handle()
101101
*/
102102
public function tags(): array
103103
{
104-
return array_merge(parent::tags(), [static::class . ':' . (is_string($this->payload) ? 1 : count($this->payload))]);
104+
return array_merge(parent::tags(), [static::class.':'.(is_string($this->payload) ? 1 : count($this->payload))]);
105105
}
106106
}

src/Jobs/WritePoints.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,6 @@ public function handle()
101101
*/
102102
public function tags(): array
103103
{
104-
return array_merge(parent::tags(), [static::class . ':' . count($this->points)]);
104+
return array_merge(parent::tags(), [static::class.':'.count($this->points)]);
105105
}
106106
}

0 commit comments

Comments
 (0)