Test Failed
Push — main ( 2036f5...f2d0d3 )
by Proyecto
07:50
created
src/TAU/Common/PropertiesBag.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@  discard block
 block discarded – undo
5 5
 trait PropertiesBag
6 6
 {
7 7
     private $attributes = [];
8
-	private $data = [];
8
+    private $data = [];
9 9
 
10
-	protected function setPropertiesBag($attributes)
10
+    protected function setPropertiesBag($attributes)
11 11
     {
12 12
         $this->attributes = $attributes;
13 13
     }
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         return array_key_exists($name, $this->data);
42 42
     }
43 43
 
44
-	public function __set($name, $value)
44
+    public function __set($name, $value)
45 45
     {
46 46
         $trace = debug_backtrace();
47 47
         if( ! $this->isPropertyAllowed($name) ) {
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         $this->data[$name] = $value;
57 57
     }
58 58
 	
59
-	public function __get($name)
59
+    public function __get($name)
60 60
     {
61 61
         $trace = debug_backtrace();
62 62
         if( ! $this->isPropertyAllowed($name) ) {
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         return $this->data[$name];
81 81
     }
82 82
 	
83
-	public function __isset($name)
83
+    public function __isset($name)
84 84
     {
85 85
         $trace = debug_backtrace();
86 86
         if( ! $this->isPropertyAllowed($name) ) {
Please login to merge, or discard this patch.
src/TAU/Module/Administration/Group/Domain/Group.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
 
21 21
     use GroupUseCases;
22 22
 
23
-     public function __construct($id, $name, $desc)
24
-     {
23
+        public function __construct($id, $name, $desc)
24
+        {
25 25
         $this->setPropertiesBag(['id', 'name', 'desc']);
26 26
         $this->setSettersBag($this->getPropertiesBag());
27 27
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         $this->setDesc($desc);
31 31
 
32 32
         // TODO: Raise CreateGroupDomainEvent($this)
33
-     }
33
+        }
34 34
 
35 35
     public function __toString()
36 36
     {
Please login to merge, or discard this patch.
src/TAU/Module/Administration/Role/Domain/Role.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
 
21 21
     use RoleUseCases;
22 22
 
23
-     public function __construct($id, $name, $desc)
24
-     {
23
+        public function __construct($id, $name, $desc)
24
+        {
25 25
         $this->setPropertiesBag(['id', 'name', 'desc']);
26 26
         $this->setSettersBag($this->getPropertiesBag());
27 27
 
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
         $this->setName($name);
30 30
         $this->setDesc($desc);
31 31
 
32
-		// TODO: Raise CreateRoleDomainEvent($this)
33
-     }
32
+        // TODO: Raise CreateRoleDomainEvent($this)
33
+        }
34 34
 
35 35
     public function __toString()
36 36
     {
Please login to merge, or discard this patch.
src/TAU/Module/Administration/Module/Domain/Module.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
 
21 21
     use ModuleUseCases;
22 22
 
23
-     public function __construct($id, $name, $desc)
24
-     {
23
+        public function __construct($id, $name, $desc)
24
+        {
25 25
         $this->setPropertiesBag(['id', 'name', 'desc']);
26 26
         $this->setSettersBag($this->getPropertiesBag());
27 27
 
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
         $this->setName($name);
30 30
         $this->setDesc($desc);
31 31
 		
32
-		// TODO: Raise CreateModuleDomainEvent($this)
33
-     }
32
+        // TODO: Raise CreateModuleDomainEvent($this)
33
+        }
34 34
 
35 35
     public function __toString()
36 36
     {
Please login to merge, or discard this patch.