Completed
Push — develop ( 502f99...598eb3 )
by Neomerx
06:23 queued 04:43
created
src/Http/Query/SortParameter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
         JsonLibrarySortParameterInterface $sortParam,
55 55
         string $name,
56 56
         bool $isRelationship,
57
-        ?int $relationshipType
57
+        ? int $relationshipType
58 58
     ) {
59 59
         $this->libSortParam   = $sortParam;
60 60
         $this->name           = $name;
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     /**
100 100
      * @inheritdoc
101 101
      */
102
-    public function getRelationshipType(): ?int
102
+    public function getRelationshipType(): ? int
103 103
     {
104 104
         return $this->relationshipType;
105 105
     }
Please login to merge, or discard this patch.
src/Http/Query/FilterParameter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     /**
83 83
      * @inheritdoc
84 84
      */
85
-    public function getRelationshipName(): ?string
85
+    public function getRelationshipName(): ? string
86 86
     {
87 87
         return $this->relationshipName;
88 88
     }
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     /**
91 91
      * @inheritdoc
92 92
      */
93
-    public function getAttributeName(): ?string
93
+    public function getAttributeName(): ? string
94 94
     {
95 95
         return $this->attributeName;
96 96
     }
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
     /**
131 131
      * @inheritdoc
132 132
      */
133
-    public function getRelationshipType(): ?int
133
+    public function getRelationshipType(): ? int
134 134
     {
135 135
         return $this->relationshipType;
136 136
     }
Please login to merge, or discard this patch.
src/Models/RelationshipStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
     /**
121 121
      * @inheritdoc
122 122
      */
123
-    public function getRelationship($model, string $relationship): ?PaginatedDataInterface
123
+    public function getRelationship($model, string $relationship): ? PaginatedDataInterface
124 124
     {
125 125
         $uniqueId = spl_object_hash($model);
126 126
         $result = $this->relationships[$uniqueId][$relationship][self::IDX_DATA];
Please login to merge, or discard this patch.
src/Models/PaginatedData.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
     /**
114 114
      * @inheritdoc
115 115
      */
116
-    public function getOffset(): ?int
116
+    public function getOffset(): ? int
117 117
     {
118 118
         return $this->offset;
119 119
     }
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     /**
132 132
      * @inheritdoc
133 133
      */
134
-    public function getLimit(): ?int
134
+    public function getLimit(): ? int
135 135
     {
136 136
         return $this->size;
137 137
     }
Please login to merge, or discard this patch.