Completed
Branch master (a16460)
by Gabor
02:34
created
src/WebHemi/DataStorage/User/UserStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      * @param DataEntityInterface $entity
53 53
      * @param array               $data
54 54
      */
55
-    protected function populateEntity(DataEntityInterface &$entity, array $data)
55
+    protected function populateEntity(DataEntityInterface&$entity, array $data)
56 56
     {
57 57
         /* @var UserEntity $entity */
58 58
         $entity->setUserId($data[$this->idKey])
Please login to merge, or discard this patch.
src/WebHemi/DataStorage/AbstractDataStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,5 +89,5 @@
 block discarded – undo
89 89
      * @param DataEntityInterface $entity
90 90
      * @param array               $data
91 91
      */
92
-    abstract protected function populateEntity(DataEntityInterface &$entity, array $data);
92
+    abstract protected function populateEntity(DataEntityInterface&$entity, array $data);
93 93
 }
Please login to merge, or discard this patch.
src/WebHemi/DataStorage/User/UserMetaStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
      * @param DataEntityInterface $entity
53 53
      * @param array               $data
54 54
      */
55
-    protected function populateEntity(DataEntityInterface &$entity, array $data)
55
+    protected function populateEntity(DataEntityInterface&$entity, array $data)
56 56
     {
57 57
         /* @var UserEntity $entity */
58 58
         $entity->setUserId($data[$this->idKey])
Please login to merge, or discard this patch.
src/WebHemi/Adapter/Data/PDO/PDOAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@
 block discarded – undo
242 242
      * @param PDOStatement $statement
243 243
      * @param array        $queryBind
244 244
      */
245
-    private function bindValuesToStatement(PDOStatement &$statement, array $queryBind)
245
+    private function bindValuesToStatement(PDOStatement&$statement, array $queryBind)
246 246
     {
247 247
         foreach ($queryBind as $index => $data) {
248 248
             $paramType = PDO::PARAM_STR;
Please login to merge, or discard this patch.
src/WebHemi/Middleware/DispatcherMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      *
43 43
      * @return ResponseInterface
44 44
      */
45
-    public function __invoke(ServerRequestInterface &$request, ResponseInterface $response)
45
+    public function __invoke(ServerRequestInterface&$request, ResponseInterface $response)
46 46
     {
47 47
         $template = $request->getAttribute('template');
48 48
         $data = $request->getAttribute('data');
Please login to merge, or discard this patch.
src/WebHemi/Middleware/MiddlewareInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,5 +29,5 @@
 block discarded – undo
29 29
      *
30 30
      * @return ResponseInterface
31 31
      */
32
-    public function __invoke(ServerRequestInterface &$request, ResponseInterface $response);
32
+    public function __invoke(ServerRequestInterface&$request, ResponseInterface $response);
33 33
 }
Please login to merge, or discard this patch.
src/WebHemi/Middleware/RoutingMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      *
43 43
      * @return ResponseInterface
44 44
      */
45
-    public function __invoke(ServerRequestInterface &$request, ResponseInterface $response)
45
+    public function __invoke(ServerRequestInterface&$request, ResponseInterface $response)
46 46
     {
47 47
         $template = $request->getAttribute('template');
48 48
         $data = $request->getAttribute('data');
Please login to merge, or discard this patch.
src/WebHemi/Middleware/Action/FakeAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      *
43 43
      * @return ResponseInterface
44 44
      */
45
-    public function __invoke(ServerRequestInterface &$request, ResponseInterface $response)
45
+    public function __invoke(ServerRequestInterface&$request, ResponseInterface $response)
46 46
     {
47 47
         $template = $request->getAttribute('template');
48 48
         $data = $request->getAttribute('data');
Please login to merge, or discard this patch.
src/WebHemi/Adapter/Router/FastRoute/FastRouteAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
         $routes = $this->config->toArray();
49 49
 
50 50
         $this->adapter = \FastRoute\simpleDispatcher(
51
-            function (RouteCollector $routeCollector) use ($routes) {
51
+            function(RouteCollector $routeCollector) use ($routes) {
52 52
                 foreach ($routes as $route) {
53 53
                     $method   = $route['allowed_methods'];
54 54
                     $uri      = $route['path'];
Please login to merge, or discard this patch.