Skip to content

Commit 48e32c4

Browse files
committed
new lib
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
1 parent 6da8793 commit 48e32c4

File tree

5 files changed

+15
-12
lines changed

5 files changed

+15
-12
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ vendor/
77
.settings/
88

99
composer/
10+
11+
.php_cs.cache

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"daita/my-small-php-tools": "~20"
13+
"artificial-owl/my-small-php-tools": "~20"
1414
},
1515
"config": {
1616
"optimize-autoloader": true

composer.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/Db/CoreRequestBuilder.php

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ class CoreRequestBuilder {
7272
/** @var bool */
7373
protected $leftJoinedNCGroupAndUser = false;
7474

75+
7576
/**
7677
* RequestBuilder constructor.
7778
*

lib/Service/GSDownstreamService.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public function onNewEvent(GSEvent $event) {
153153
$gs = $this->globalScaleService->getGlobalScaleEvent($event);
154154
$gs->manage($event);
155155
} catch (Exception $e) {
156-
$this->miscService->log('issue onNewEvent: ' . json_encode($event) . ' - ' . $e->getMessage());
156+
// $this->miscService->log('issue onNewEvent: ' . json_encode($event) . ' - ' . $e->getMessage());
157157
}
158158
}
159159

0 commit comments

Comments
 (0)