Passed
Push — master ( 80c517...be6fbd )
by Andreas
82:30 queued 63:12
created
lib/net/nemein/wiki/wikipage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     public function _on_creating() : bool
30 30
     {
31
-        if (   $this->title == ''
31
+        if ($this->title == ''
32 32
             || !$this->topic) {
33 33
             // We must have wikiword and topic at this stage
34 34
             return false;
Please login to merge, or discard this patch.
src/midcom/datamanager/storage/image.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
             $this->save_attachment_list();
57 57
         }
58 58
 
59
-        if (   array_intersect_key(array_flip(['description', 'title', 'score']), $this->value)
59
+        if (array_intersect_key(array_flip(['description', 'title', 'score']), $this->value)
60 60
             && $main = $this->get_main()) {
61 61
             $needs_update = false;
62 62
             if (array_key_exists('description', $this->value)) {
Please login to merge, or discard this patch.
lib/org/openpsa/projects/task/resource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
             return;
89 89
         }
90 90
 
91
-        $project  = new org_openpsa_projects_project($task->project);
91
+        $project = new org_openpsa_projects_project($task->project);
92 92
 
93 93
         $qb = org_openpsa_contacts_role_dba::new_query_builder();
94 94
         $qb->add_constraint('person', '=', $this->person);
Please login to merge, or discard this patch.