Test Failed
Branch master (ac7191)
by Peter
03:23
created
lib/RIM/Extensions/ExtControlAct.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,8 +86,8 @@
 block discarded – undo
86 86
     {
87 87
         // note the mood code is required.
88 88
         $this->setAcceptableClassCodes(ClassCodeInterface::ActClass)
89
-          ->setClassCode(ClassCodeInterface::CONTROL_ACT)
90
-          ->setAcceptableClassCodes(MoodCodeInterface::x_DocumentActMood);
89
+            ->setClassCode(ClassCodeInterface::CONTROL_ACT)
90
+            ->setAcceptableClassCodes(MoodCodeInterface::x_DocumentActMood);
91 91
     }
92 92
 
93 93
     /**
Please login to merge, or discard this patch.
lib/RIM/Extensions/AsEmployment.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -64,13 +64,13 @@  discard block
 block discarded – undo
64 64
      * @param null $ext_employer_organization
65 65
      */
66 66
     public function __construct(
67
-      $ext_code = null,
68
-      $occupation = null,
69
-      $job_class_code = null,
70
-      $ext_employer_organization = null
67
+        $ext_code = null,
68
+        $occupation = null,
69
+        $job_class_code = null,
70
+        $ext_employer_organization = null
71 71
     ) {
72 72
         $this->setAcceptableClassCodes(array('', ClassCodeInterface::EMPLOYMENT))
73
-          ->setClassCode(ClassCodeInterface::EMPLOYMENT);
73
+            ->setClassCode(ClassCodeInterface::EMPLOYMENT);
74 74
 
75 75
         if ($ext_code) {
76 76
             $this->setExtCode($ext_code);
@@ -96,9 +96,9 @@  discard block
 block discarded – undo
96 96
     {
97 97
         $el = $this->createElement($doc);
98 98
         $this->renderExtCode($el, $doc)
99
-          ->renderOccupation($el, $doc)
100
-          ->renderJobClassCode($el, $doc)
101
-          ->renderExtEmployerOrganization($el, $doc);
99
+            ->renderOccupation($el, $doc)
100
+            ->renderJobClassCode($el, $doc)
101
+            ->renderExtEmployerOrganization($el, $doc);
102 102
         return $el;
103 103
     }
104 104
 
Please login to merge, or discard this patch.
lib/RIM/Extensions/ExtEffectiveTime.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
     public function __construct(IntervalOfTime $interval_of_time)
62 62
     {
63 63
         $this->setIntervalOfTime($interval_of_time)
64
-          ->setXSIType(XSITypeInterface::INTERVAL_TIMESTAMP);
64
+            ->setXSIType(XSITypeInterface::INTERVAL_TIMESTAMP);
65 65
     }
66 66
 
67 67
     /**
Please login to merge, or discard this patch.
lib/RIM/Extensions/ExtParticipantRole.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,8 @@
 block discarded – undo
56 56
     public function __construct(ExtId $ext_id)
57 57
     {
58 58
         $this->setExtId($ext_id)
59
-          ->setAcceptableClassCodes(array('', ClassCodeInterface::ASSIGNED, ClassCodeInterface::PATIENT))
60
-          ->setClassCode(ClassCodeInterface::ASSIGNED);
59
+            ->setAcceptableClassCodes(array('', ClassCodeInterface::ASSIGNED, ClassCodeInterface::PATIENT))
60
+            ->setClassCode(ClassCodeInterface::ASSIGNED);
61 61
 
62 62
     }
63 63
 
Please login to merge, or discard this patch.
lib/RIM/Extensions/JobClassCode.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -66,18 +66,18 @@
 block discarded – undo
66 66
         switch (strtoupper($code)) {
67 67
             case self::CODE_FULL_TIME:
68 68
                 $this->setCodedValue(new CodedValue(
69
-                  self::CODE_FULL_TIME,
70
-                  self::DESC_FULL_TIME,
71
-                  self::CODE_SYSTEM,
72
-                  self::CODE_SYSTEM_DESC
69
+                    self::CODE_FULL_TIME,
70
+                    self::DESC_FULL_TIME,
71
+                    self::CODE_SYSTEM,
72
+                    self::CODE_SYSTEM_DESC
73 73
                 ));
74 74
             break;
75 75
             case self::CODE_PART_TIME:
76 76
                 $this->setCodedValue(new CodedValue(
77
-                  self::CODE_PART_TIME,
78
-                  self::DESC_PART_TIME,
79
-                  self::CODE_SYSTEM,
80
-                  self::CODE_SYSTEM_DESC
77
+                    self::CODE_PART_TIME,
78
+                    self::DESC_PART_TIME,
79
+                    self::CODE_SYSTEM,
80
+                    self::CODE_SYSTEM_DESC
81 81
                 ));
82 82
             break;
83 83
             default:
Please login to merge, or discard this patch.
lib/RIM/Extensions/AsEntityIdentifier.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,9 +60,9 @@
 block discarded – undo
60 60
     public function __construct(ExtId $id, AssigningGeographicArea $geographic_area)
61 61
     {
62 62
         $this->setAcceptableClassCodes(ClassCodeInterface::RoleClassAssignedEntity)
63
-          ->setClassCode(ClassCodeInterface::IDENTITY)
64
-          ->setExtId($id)
65
-          ->setAssigningGeographicArea($geographic_area);
63
+            ->setClassCode(ClassCodeInterface::IDENTITY)
64
+            ->setExtId($id)
65
+            ->setAssigningGeographicArea($geographic_area);
66 66
     }
67 67
 
68 68
 
Please login to merge, or discard this patch.
lib/RIM/Extensions/AssigningGeographicArea.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
     public function __construct(ExtEntityName $name)
63 63
     {
64 64
         $this->setAcceptableClassCodes(array('', ClassCodeInterface::PLACE))
65
-          ->setClassCode(ClassCodeInterface::PLACE)
66
-          ->setExtEntityName($name);
65
+            ->setClassCode(ClassCodeInterface::PLACE)
66
+            ->setExtEntityName($name);
67 67
     }
68 68
 
69 69
     /**
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     {
76 76
         $el = $this->createElement($doc);
77 77
         $this->renderExtEntityName($el, $doc)
78
-          ->renderEncompassingEncounter($el, $doc);
78
+            ->renderEncompassingEncounter($el, $doc);
79 79
         return $el;
80 80
     }
81 81
 
Please login to merge, or discard this patch.
lib/RIM/Extensions/ExtEntitlement.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -69,15 +69,15 @@  discard block
 block discarded – undo
69 69
      * @param null $ext_participant
70 70
      */
71 71
     public function __construct(
72
-      $ext_id = null,
73
-      $ext_code = null,
74
-      $ext_effective_time = null,
75
-      $ext_participant = null
72
+        $ext_id = null,
73
+        $ext_code = null,
74
+        $ext_effective_time = null,
75
+        $ext_participant = null
76 76
     ) {
77 77
         $this->setAcceptableClassCodes(['', ClassCodeInterface::COVERAGE])
78
-          ->setAcceptableMoodCodes(['', MoodCodeInterface::EVENT])
79
-          ->setClassCode(ClassCodeInterface::COVERAGE)
80
-          ->setMoodCode(MoodCodeInterface::EVENT);
78
+            ->setAcceptableMoodCodes(['', MoodCodeInterface::EVENT])
79
+            ->setClassCode(ClassCodeInterface::COVERAGE)
80
+            ->setMoodCode(MoodCodeInterface::EVENT);
81 81
         if ($ext_id && $ext_id instanceof ExtId) {
82 82
             $this->setExtId($ext_id);
83 83
         }
@@ -101,9 +101,9 @@  discard block
 block discarded – undo
101 101
     {
102 102
         $el = $this->createElement($doc);
103 103
         $this->renderExtId($el, $doc)
104
-          ->renderExtCode($el, $doc)
105
-          ->renderExtEffectiveTime($el, $doc)
106
-          ->renderExtParticipant($el, $doc);
104
+            ->renderExtCode($el, $doc)
105
+            ->renderExtEffectiveTime($el, $doc)
106
+            ->renderExtParticipant($el, $doc);
107 107
         return $el;
108 108
     }
109 109
 
Please login to merge, or discard this patch.
lib/RIM/Extensions/SubstitutionPermission.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,10 +53,10 @@
 block discarded – undo
53 53
     public function __construct(Code $code)
54 54
     {
55 55
         $this->setAcceptableClassCodes([ClassCodeInterface::SUBSTITUTION])
56
-          ->setClassCode(ClassCodeInterface::SUBSTITUTION)
57
-          ->setAcceptableMoodCodes(MoodCodeInterface::ActMood)
58
-          ->setMoodCode(MoodCodeInterface::PERMISSION)
59
-          ->setCode($code);
56
+            ->setClassCode(ClassCodeInterface::SUBSTITUTION)
57
+            ->setAcceptableMoodCodes(MoodCodeInterface::ActMood)
58
+            ->setMoodCode(MoodCodeInterface::PERMISSION)
59
+            ->setCode($code);
60 60
     }
61 61
 
62 62
     /**
Please login to merge, or discard this patch.