Passed
Push — main ( 06f853...df3669 )
by Osvaldo
08:09
created
src/IdDeTrabajador.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
     private function setIdDeTrabajador(string $idDeTrabajador): string
21 21
     {
22
-        if(strlen($idDeTrabajador) >= 1)
22
+        if (strlen($idDeTrabajador) >= 1)
23 23
         {
24 24
             return $idDeTrabajador;
25 25
         }
Please login to merge, or discard this patch.
src/TipoDePuesto.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
     private function setTipoDePuesto(string $tipoDePuesto): string
21 21
     {
22
-        if(
22
+        if (
23 23
             $tipoDePuesto == 'Operativo' || 
24 24
             $tipoDePuesto == 'Profesional o técnico' ||
25 25
             $tipoDePuesto == 'Supervisor' || 
Please login to merge, or discard this patch.
src/TrabajadorConId.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace src;
3 3
 
4
-use src\{Trabajador,IdDeTrabajador};
4
+use src\{Trabajador, IdDeTrabajador};
5 5
 
6 6
 class TrabajadorConId
7 7
 {
Please login to merge, or discard this patch.
src/RangoDeEdad.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,10 +35,10 @@
 block discarded – undo
35 35
     {
36 36
         $rango = '';
37 37
 
38
-        foreach($this->_rangos as $k => $r)
38
+        foreach ($this->_rangos as $k => $r)
39 39
         {
40 40
             
41
-            if($edad >= $k && $edad <= $r)
41
+            if ($edad >= $k && $edad <= $r)
42 42
             {
43 43
                 $rango = "$k-$r";
44 44
             }
Please login to merge, or discard this patch.
src/NivelDeEstudios.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     private function setNivelDeEstudios(string $nivelDeEstudios): string
32 32
     {
33
-        if(in_array($nivelDeEstudios,$this->_niveles))
33
+        if (in_array($nivelDeEstudios, $this->_niveles))
34 34
         {
35 35
             return $nivelDeEstudios;
36 36
         }
Please login to merge, or discard this patch.
src/RangoTiempoEnPuesto.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 
30 30
     private function setRangoTiempoEnPuesto(string $rangoTiempoEnPuesto): string
31 31
     {
32
-        if(in_array($rangoTiempoEnPuesto,$this->_niveles))
32
+        if (in_array($rangoTiempoEnPuesto, $this->_niveles))
33 33
         {
34 34
             return $rangoTiempoEnPuesto;
35 35
         }
Please login to merge, or discard this patch.
src/RangoExperienciaLaboral.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
     private function setRangoExperienciaLaboral(string $rangoExperienciaLaboral): string
30 30
     {
31
-        if(in_array($rangoExperienciaLaboral,$this->_niveles))
31
+        if (in_array($rangoExperienciaLaboral, $this->_niveles))
32 32
         {
33 33
             return $rangoExperienciaLaboral;
34 34
         }
Please login to merge, or discard this patch.