Passed
Pull Request — master (#15)
by Alexander
01:46
created
src/Route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
      * @param Closure|null $cb
33 33
      * @param array $parameters
34 34
      */
35
-    public function __construct(string $url, ?Closure $cb = null, array $parameters = [])
35
+    public function __construct(string $url, ? Closure $cb = null, array $parameters = [])
36 36
     {
37 37
         $this->url = $url;
38 38
         $this->callback = $cb;
Please login to merge, or discard this patch.
src/data/Source.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
     public function query($query, array $params = []);
10 10
 
11
-    public function one(string $table, array $conditions, array $options = []):?array;
11
+    public function one(string $table, array $conditions, array $options = []): ? array;
12 12
 
13 13
     public function find(string $table, array $conditions, array $options = []);
14 14
 
Please login to merge, or discard this patch.
src/Connections.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
      * @param Closure|null $close an optional anonymous function that takes the connection as arguments and closes it
30 30
      * @throws InvalidArgumentException if connection $name already exists
31 31
      */
32
-    public static function add(string $name, Closure $open, ?Closure $close = null): void
32
+    public static function add(string $name, Closure $open, ? Closure $close = null) : void
33 33
     {
34 34
         if (isset(self::$open[$name])) {
35 35
             throw new InvalidArgumentException("Connection $name already exists");
Please login to merge, or discard this patch.
src/Environment.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         return self::$settings[$environment][$config_name];
57 57
     }
58 58
 
59
-    public static function grab(?string $environment = null): array
59
+    public static function grab(? string $environment = null) : array
60 60
     {
61 61
         if (is_null($environment)) {
62 62
             $environment = static::current();
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      * @param mixed $value
75 75
      * @param null|string $environment if not specified, configures CURRENT environment only. E::ALL, sets for all envs.
76 76
      */
77
-    public static function put(string $config_name, $value, ?string $environment = null): void
77
+    public static function put(string $config_name, $value, ? string $environment = null) : void
78 78
     {
79 79
         if (is_null($environment)) {
80 80
             $environment = static::current();
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      * @param array $configs
99 99
      * @param null|string $environment
100 100
      */
101
-    public static function add(array $configs, ?string $environment = null): void
101
+    public static function add(array $configs, ? string $environment = null) : void
102 102
     {
103 103
         if (is_null($environment)) {
104 104
             $environment = static::current();
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      * @param array $configs
123 123
      * @param null|string $environment
124 124
      */
125
-    public static function set(array $configs, ?string $environment = null): void
125
+    public static function set(array $configs, ? string $environment = null) : void
126 126
     {
127 127
         if (is_null($environment)) {
128 128
             $environment = static::current();
Please login to merge, or discard this patch.
src/response/Page.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         try {
95 95
             $headfile = $this->getLayoutFile('head');
96 96
             if (file_exists($headfile)) {
97
-                (function ($sldkfjlksejflskjflskdjflskdfj) {
97
+                (function($sldkfjlksejflskjflskdjflskdfj) {
98 98
                     extract($this->data);
99 99
                     include $sldkfjlksejflskjflskdjflskdfj;
100 100
                 })($headfile);
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 
103 103
             $neckfile = $this->getLayoutFile('neck');
104 104
             if (file_exists($neckfile)) {
105
-                (function ($lidsinqjhsdfytqkwjkasjdksadsdg) {
105
+                (function($lidsinqjhsdfytqkwjkasjdksadsdg) {
106 106
                     extract($this->data);
107 107
                     include $lidsinqjhsdfytqkwjkasjdksadsdg;
108 108
                 })($neckfile);
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 
143 143
         ob_start();
144 144
         try {
145
-            (function ($ldkfoskdfosjicyvutwehkshfskjdf) {
145
+            (function($ldkfoskdfosjicyvutwehkshfskjdf) {
146 146
                 extract($this->data);
147 147
                 include $ldkfoskdfosjicyvutwehkshfskjdf;
148 148
             })($footfile);
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
         ob_start();
170 170
         try {
171 171
             // or another way to hide the file variable?
172
-            (function ($dsfjskdfjsdlkfjsdkfjsdkfjsdlkfjsd) {
172
+            (function($dsfjskdfjsdlkfjsdkfjsdkfjsdlkfjsd) {
173 173
                 extract($this->data);
174 174
                 include $dsfjskdfjsdlkfjsdkfjsdkfjsdlkfjsd;
175 175
             })($file);
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
      * @param null|string $url
213 213
      * @return string
214 214
      */
215
-    private function templateFromUrl(?string $url = null): string
215
+    private function templateFromUrl(? string $url = null) : string
216 216
     {
217 217
         $parts = \explode('/', $url);
218 218
         $last = \array_slice($parts, -1, 1, true);
Please login to merge, or discard this patch.
src/data/MongoDB.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         throw new \Exception("Query method is not implemented for MongDB");
79 79
     }
80 80
 
81
-    public function one(string $collection_name, array $conditions, array $options = []): ?array
81
+    public function one(string $collection_name, array $conditions, array $options = []): ? array
82 82
     {
83 83
         $collection = $this->collection($collection_name);
84 84
         $conditions = $this->idReplaceConditions($conditions);
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         return $result->getModifiedCount() ?? 0;
130 130
     }
131 131
 
132
-    public function insert(string $collection, array $data, array $options = []): ?ObjectID
132
+    public function insert(string $collection, array $data, array $options = []): ? ObjectID
133 133
     {
134 134
         $collection = $this->collection($collection);
135 135
         $result = $collection->insertOne($data, $options);
Please login to merge, or discard this patch.
src/data/Mysql.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         return $result->fetchAll(PDO::FETCH_ASSOC);
62 62
     }
63 63
 
64
-    public function one(string $table, array $conditions, array $options = []): ?array
64
+    public function one(string $table, array $conditions, array $options = []): ? array
65 65
     {
66 66
         $result = $this->find($table, $conditions, $options);
67 67
         $result = iterator_to_array($result);
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
         if (empty($conditions)) {
107 107
             return "";
108 108
         }
109
-        $fun = function ($o, $v) {
109
+        $fun = function($o, $v) {
110 110
             return "{$o}{$v} = :c_{$v}";
111 111
         };
112 112
         $where = array_reduce(array_keys($conditions), $fun, "");
@@ -171,13 +171,13 @@  discard block
 block discarded – undo
171 171
 
172 172
     private function data(array $data): string
173 173
     {
174
-        $fun = function ($o, $v) {
174
+        $fun = function($o, $v) {
175 175
             return "{$o}{$v} = :d_{$v}";
176 176
         };
177 177
         return (string)array_reduce(array_keys($data), $fun, "");
178 178
     }
179 179
 
180
-    public function insert(string $table, array $data, array $options = []): ?string
180
+    public function insert(string $table, array $data, array $options = []): ? string
181 181
     {
182 182
         $keys = implode(', ', array_keys($data));
183 183
         $data_phs = ':d_' . implode(', :d_', array_keys($data));
Please login to merge, or discard this patch.
src/Model.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         unset($options['with']);
79 79
         $result = static::db()->find(static::table(), $conditions, $options);
80 80
         $pk = static::pk();
81
-        $gen = function () use ($result, $pk, $with) {
81
+        $gen = function() use ($result, $pk, $with) {
82 82
             foreach ($result as $row) {
83 83
                 $model = new static($row);
84 84
                 if ($with) {
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         return iterator_to_array($generator);
113 113
     }
114 114
 
115
-    public static function fields(): ?array
115
+    public static function fields(): ? array
116 116
     {
117 117
         return isset(static::$fields) ? static::$fields : null;
118 118
     }
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
         if (empty($fields) === false) {
124 124
             $data = array_filter(
125 125
                 $data,
126
-                function ($key) use ($fields) {
126
+                function($key) use ($fields) {
127 127
                     return in_array($key, $fields);
128 128
                 },
129 129
                 ARRAY_FILTER_USE_KEY
Please login to merge, or discard this patch.
src/Entity.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $this->data = $data;
34 34
     }
35 35
 
36
-    abstract public static function fields(): ?array;
36
+    abstract public static function fields(): ? array;
37 37
 
38 38
     /**
39 39
      * @param $name
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
     public function __call(string $method, array $args = [])
48 48
     {
49
-        $refresh = (bool) array_shift($args);
49
+        $refresh = (bool)array_shift($args);
50 50
         return $this->getRelatedModel($method, $refresh);
51 51
     }
52 52
 
Please login to merge, or discard this patch.