Completed
Push — develop ( 83818f...f24506 )
by
unknown
07:25
created
module/Core/src/Core/Entity/AttachableEntityInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * @param AttachableEntityManager $attachableEntityManager
24 24
      * @throws \LogicException If attachable entity manager is already set
25
+     * @return AttachableEntityTrait
25 26
      */
26 27
     public function setAttachableEntityManager(AttachableEntityManager $attachableEntityManager);
27 28
 
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Controller/JobboardController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,13 +80,13 @@
 block discarded – undo
80 80
         $request = $this->getRequest();
81 81
         $getParams = $request->getQuery();
82 82
         $routeParams = $this->params()->fromRoute();
83
-        if (isset($routeParams['q']) && !isset($getParams['q'])){
84
-            $getParams['q']=$routeParams['q'];
83
+        if (isset($routeParams['q']) && !isset($getParams['q'])) {
84
+            $getParams['q'] = $routeParams['q'];
85 85
         }
86 86
 
87 87
         $job = $this->serviceLocator->get('repositories')->get('Jobs')->find('561b86e3d3b93f356d732bcf');
88 88
         $events = $this->serviceLocator->get('Jobs/Events');
89
-        $jobEvent       = $this->serviceLocator->get('Jobs/Event');
89
+        $jobEvent = $this->serviceLocator->get('Jobs/Event');
90 90
         $jobEvent->setJobEntity($job);
91 91
         $jobEvent->addPortal('stackoverflow');
92 92
 
Please login to merge, or discard this patch.
module/Core/src/Core/Entity/AttachableEntityTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     /**
79 79
      * @see AttachableEntityInterface::createAttachedEntity()
80 80
      */
81
-    public function createAttachedEntity($entityClass, $values = [], $key=null)
81
+    public function createAttachedEntity($entityClass, $values = [], $key = null)
82 82
     {
83 83
         return $this->getAttachableEntityManager()->createAttachedEntity($entityClass, $values, $key);
84 84
     }
Please login to merge, or discard this patch.