Completed
Push — develop ( a3bac5...6cab8d )
by
unknown
15:50 queued 07:36
created
module/Auth/src/Auth/Entity/User.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * YAWIK
4
- *
5
- * @copyright (c) 2013 - 2016 Cross Solution (http://cross-solution.de)
6
- * @license       MIT
7
- */
3
+     * YAWIK
4
+     *
5
+     * @copyright (c) 2013 - 2016 Cross Solution (http://cross-solution.de)
6
+     * @license       MIT
7
+     */
8 8
 
9 9
 namespace Auth\Entity;
10 10
 
Please login to merge, or discard this patch.
module/Settings/src/Settings/Entity/SettingsContainer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param bool  $recursive
28
-     * @param array $skipMembers
28
+     * @param string[] $skipMembers
29 29
      *
30 30
      * @return $this
31 31
      */
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     }
131 131
 
132 132
     /**
133
-     * @param $property
133
+     * @param string $property
134 134
      *
135 135
      * @return null
136 136
      */
Please login to merge, or discard this patch.
module/Organizations/src/Organizations/Entity/Organization.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -562,7 +562,7 @@  discard block
 block discarded – undo
562 562
      * @param string $role
563 563
      * @return ArrayCollection
564 564
      */
565
-    public function getEmployeesByRole($role){
565
+    public function getEmployeesByRole($role) {
566 566
         $employees = new ArrayCollection();
567 567
 
568 568
         /* @var \Organizations\Entity\Employee $employee */
@@ -680,7 +680,7 @@  discard block
 block discarded – undo
680 680
      */
681 681
     public function getTemplate()
682 682
     {
683
-        if (null === $this->template){
683
+        if (null === $this->template) {
684 684
             $this->template = new Template();
685 685
         }
686 686
         return $this->template;
Please login to merge, or discard this patch.
module/Organizations/src/Organizations/Entity/Employee.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
      * @param $role
135 135
      */
136 136
     public function setRole($role) {
137
-        $this->role=$role;
137
+        $this->role = $role;
138 138
     }
139 139
 
140 140
     /**
Please login to merge, or discard this patch.