Test Failed
Branch master (ac7191)
by Peter
03:23
created
lib/RIM/Entity/ManufacturedLabeledDrug.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
             $this->setCodedWithEquivalents($code);
48 48
         }
49 49
         $this->setAcceptableClassCodes(ClassCodeInterface::EntityClassManufacturedMaterial)
50
-          ->setClassCode(ClassCodeInterface::MANUFACTURED_MATERIAL);
50
+            ->setClassCode(ClassCodeInterface::MANUFACTURED_MATERIAL);
51 51
     }
52 52
 
53 53
     /**
Please login to merge, or discard this patch.
lib/RIM/Entity/AssignedPerson.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     public function __construct($names = null, $as_entity_identifier = null, $as_employment = null, $as_qualifications = null)
58 58
     {
59 59
         $this->setAcceptableClassCodes(ClassCodeInterface::EntityClass)
60
-          ->setClassCode(ClassCodeInterface::PERSON);
60
+            ->setClassCode(ClassCodeInterface::PERSON);
61 61
         if ($names) {
62 62
             $this->setNames($names);
63 63
         }
Please login to merge, or discard this patch.
lib/RIM/Entity/Organization.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@
 block discarded – undo
51 51
     public function __construct(Set $names, Id $id)
52 52
     {
53 53
         $this->setNames($names)
54
-          ->addId($id)
55
-          ->setAcceptableClassCodes(ClassCodeInterface::EntityClassOrganization)
56
-          ->setClassCode(ClassCodeInterface::ORGANISATION);
54
+            ->addId($id)
55
+            ->setAcceptableClassCodes(ClassCodeInterface::EntityClassOrganization)
56
+            ->setClassCode(ClassCodeInterface::ORGANISATION);
57 57
     }
58 58
 
59 59
 
Please login to merge, or discard this patch.
lib/RIM/Entity/AssignedEntity.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -82,17 +82,17 @@
 block discarded – undo
82 82
      * @param RepresentedOrganization $represented_organization
83 83
      */
84 84
     public function __construct(
85
-      Id $id,
86
-      $code = null,
87
-      $addr = null,
88
-      $telecom = null,
89
-      $assigned_person = null,
90
-      $as_entity_identifier = null,
91
-      $represented_organization = null
85
+        Id $id,
86
+        $code = null,
87
+        $addr = null,
88
+        $telecom = null,
89
+        $assigned_person = null,
90
+        $as_entity_identifier = null,
91
+        $represented_organization = null
92 92
     ) {
93 93
         $this->setAcceptableClassCodes(['', ClassCodeInterface::ASSIGNED])
94
-          ->setClassCode('')
95
-          ->setId($id);
94
+            ->setClassCode('')
95
+            ->setId($id);
96 96
         if ($code && $code instanceof Code) {
97 97
             $this->setCode($code);
98 98
         }
Please login to merge, or discard this patch.
lib/RIM/Entity/AssociatedEntity.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
     public function __construct()
68 68
     {
69 69
         $this->setAcceptableClassCodes(ClassCodeInterface::RoleClassAssociative)
70
-          ->setClassCode('');
70
+            ->setClassCode('');
71 71
     }
72 72
 
73 73
     /**
Please login to merge, or discard this patch.
lib/RIM/Entity/RepresentedOrganization.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,8 +83,8 @@
 block discarded – undo
83 83
     public function __construct($name = null, $as_entity_identifier = null)
84 84
     {
85 85
         $this->setAcceptableClassCodes(ClassCodeInterface::EntityClassOrganization)
86
-          ->setClassCode(ClassCodeInterface::IDENTITY)
87
-          ->setDeterminerCode('');
86
+            ->setClassCode(ClassCodeInterface::IDENTITY)
87
+            ->setDeterminerCode('');
88 88
         if ($name && $name instanceof EntityName) {
89 89
             $this->addName($name);
90 90
         }
Please login to merge, or discard this patch.
lib/RIM/Entity/Device.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -55,9 +55,9 @@  discard block
 block discarded – undo
55 55
     public function __construct()
56 56
     {
57 57
         $this->setAcceptableClassCodes(ClassCodeInterface::EntityClassDevice)
58
-          ->setClassCode(ClassCodeInterface::CLASS_DEVICE)
59
-          ->setAcceptableDeterminerCodes(DeterminerCodeInterface::EntityDeterminer)
60
-          ->setDeterminerCode(DeterminerCodeInterface::INSTANCE_);
58
+            ->setClassCode(ClassCodeInterface::CLASS_DEVICE)
59
+            ->setAcceptableDeterminerCodes(DeterminerCodeInterface::EntityDeterminer)
60
+            ->setDeterminerCode(DeterminerCodeInterface::INSTANCE_);
61 61
     }
62 62
 
63 63
     /**
@@ -67,8 +67,8 @@  discard block
 block discarded – undo
67 67
     {
68 68
         $el = $this->createElement($doc);
69 69
         $this->renderCode($el, $doc)
70
-          ->renderManufacturerModelName($el, $doc)
71
-          ->renderSoftwareName($el, $doc);
70
+            ->renderManufacturerModelName($el, $doc)
71
+            ->renderSoftwareName($el, $doc);
72 72
         return $el;
73 73
     }
74 74
 
Please login to merge, or discard this patch.
lib/RIM/Entity/Person.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -47,9 +47,9 @@  discard block
 block discarded – undo
47 47
      * @param CodedValue|NULL $administrativeGenderCode
48 48
      */
49 49
     public function __construct(
50
-      Set $names = null,
51
-      TimeStamp $birth_time = null,
52
-      CodedValue $administrativeGenderCode = null
50
+        Set $names = null,
51
+        TimeStamp $birth_time = null,
52
+        CodedValue $administrativeGenderCode = null
53 53
     ) {
54 54
         if ($names) {
55 55
             $this->setNames($names);
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             $this->setAdministrativeGenderCode($administrativeGenderCode);
62 62
         }
63 63
         $this->setAcceptableClassCodes(ClassCodeInterface::EntityClass)
64
-          ->setClassCode(ClassCodeInterface::PERSON);
64
+            ->setClassCode(ClassCodeInterface::PERSON);
65 65
     }
66 66
 
67 67
     /**
@@ -76,12 +76,12 @@  discard block
 block discarded – undo
76 76
             $this->getNames()->setValueToElement($el, $doc);
77 77
         }
78 78
         $this->renderAdministrativeGenderCode($el, $doc)
79
-          ->renderBirthTime($el, $doc)
80
-          ->renderEthnicGroup($el, $doc)
81
-          ->renderMultipleBirths($el, $doc)
82
-          ->renderDeceasedPerson($el, $doc)
83
-          ->renderBirthPlace($el, $doc)
84
-          ->renderAsEntityIdentifier($el, $doc);
79
+            ->renderBirthTime($el, $doc)
80
+            ->renderEthnicGroup($el, $doc)
81
+            ->renderMultipleBirths($el, $doc)
82
+            ->renderDeceasedPerson($el, $doc)
83
+            ->renderBirthPlace($el, $doc)
84
+            ->renderAsEntityIdentifier($el, $doc);
85 85
         return $el;
86 86
     }
87 87
 
Please login to merge, or discard this patch.
lib/RIM/Entity/LivingSubject.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -58,11 +58,11 @@
 block discarded – undo
58 58
             $this->getNames()->setValueToElement($el, $doc);
59 59
         }
60 60
         $this->renderAdministrativeGenderCode($el, $doc)
61
-          ->renderBirthTime($el, $doc)
62
-          ->renderEthnicGroup($el, $doc)
63
-          ->renderMultipleBirths($el, $doc)
64
-          ->renderBirthPlace($el, $doc)
65
-          ->renderAsEntityIdentifier($el, $doc);
61
+            ->renderBirthTime($el, $doc)
62
+            ->renderEthnicGroup($el, $doc)
63
+            ->renderMultipleBirths($el, $doc)
64
+            ->renderBirthPlace($el, $doc)
65
+            ->renderAsEntityIdentifier($el, $doc);
66 66
         return $el;
67 67
     }
68 68
 
Please login to merge, or discard this patch.