Passed
Pull Request — master (#78)
by guillaume
07:13
created
app/Src/UseCases/Infra/Sql/CharacteristicsRepositorySql.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -30,12 +30,12 @@  discard block
 block discarded – undo
30 30
         return $list->toArray();
31 31
     }
32 32
 
33
-    public function getByPageId(int $pageId):?Characteristic
33
+    public function getByPageId(int $pageId): ?Characteristic
34 34
     {
35 35
         $c = CharacteristicsModel::query()
36 36
             ->where('page_id', $pageId)
37 37
             ->first();
38
-        if(!isset($c)){
38
+        if (!isset($c)) {
39 39
             return null;
40 40
         }
41 41
         return $c->toDomain();
@@ -61,14 +61,14 @@  discard block
 block discarded – undo
61 61
     public function getBy(array $conditions): ?Characteristic
62 62
     {
63 63
         $characteristicModel = CharacteristicsModel::query()
64
-            ->when(isset($conditions['type']), function ($query) use($conditions){
64
+            ->when(isset($conditions['type']), function($query) use($conditions){
65 65
                 $query->where('type', $conditions['type']);
66 66
             })
67
-            ->when(isset($conditions['title']), function ($query) use($conditions){
67
+            ->when(isset($conditions['title']), function($query) use($conditions){
68 68
                 $query->where('code', $conditions['title']);
69 69
             })
70 70
             ->first();
71
-        if(!isset($characteristicModel)){
71
+        if (!isset($characteristicModel)) {
72 72
             return null;
73 73
         }
74 74
         return $characteristicModel->toDomain();
@@ -78,13 +78,13 @@  discard block
 block discarded – undo
78 78
     {
79 79
         $characteristicModel = CharacteristicsModel::query()
80 80
             ->where('type', $type)
81
-            ->where('pretty_page_label','LIKE', '%'.$search.'%')
81
+            ->where('pretty_page_label', 'LIKE', '%'.$search.'%')
82 82
             ->get();
83 83
 
84
-        if(!isset($characteristicModel)){
84
+        if (!isset($characteristicModel)) {
85 85
             return [];
86 86
         }
87
-        foreach ($characteristicModel as $characteristic){
87
+        foreach ($characteristicModel as $characteristic) {
88 88
             $characteristics[] = $characteristic->toArray();
89 89
         }
90 90
         return $characteristics ?? [];
Please login to merge, or discard this patch.