Passed
Push — master ( df0007...9d2b25 )
by Tom
02:33
created
src/Database/ApiConnection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
      */
61 61
     public function select($query, $bindings = [], $useReadPdo = true)
62 62
     {
63
-        return $this->run($query, $bindings, function ($query) {
63
+        return $this->run($query, $bindings, function($query) {
64 64
             $key = $this->extractJsonKey($query);
65 65
 
66 66
             $url = $this->getApiHost() . $query;
Please login to merge, or discard this patch.
src/ApiDriverServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     public function register(): void
17 17
     {
18
-        Connection::resolverFor('api', static function ($connection, $database, $prefix, $config) {
18
+        Connection::resolverFor('api', static function($connection, $database, $prefix, $config) {
19 19
             if (app()->has(ApiConnection::class)) {
20 20
                 return app(ApiConnection::class);
21 21
             }
Please login to merge, or discard this patch.