File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ public function getPushStatus()
116
116
*/
117
117
public function isScheduled ()
118
118
{
119
- return $ this ->getPushStatus () == self ::STATUS_SCHEDULED ;
119
+ return $ this ->getPushStatus () === self ::STATUS_SCHEDULED ;
120
120
121
121
}
122
122
@@ -127,7 +127,7 @@ public function isScheduled()
127
127
*/
128
128
public function isPending ()
129
129
{
130
- return $ this ->getPushStatus () == self ::STATUS_PENDING ;
130
+ return $ this ->getPushStatus () === self ::STATUS_PENDING ;
131
131
132
132
}
133
133
@@ -138,7 +138,7 @@ public function isPending()
138
138
*/
139
139
public function isRunning ()
140
140
{
141
- return $ this ->getPushStatus () == self ::STATUS_RUNNING ;
141
+ return $ this ->getPushStatus () === self ::STATUS_RUNNING ;
142
142
143
143
}
144
144
@@ -149,7 +149,7 @@ public function isRunning()
149
149
*/
150
150
public function hasSucceeded ()
151
151
{
152
- return $ this ->getPushStatus () == self ::STATUS_SUCCEEDED ;
152
+ return $ this ->getPushStatus () === self ::STATUS_SUCCEEDED ;
153
153
154
154
}
155
155
@@ -160,7 +160,7 @@ public function hasSucceeded()
160
160
*/
161
161
public function hasFailed ()
162
162
{
163
- return $ this ->getPushStatus () == self ::STATUS_FAILED ;
163
+ return $ this ->getPushStatus () === self ::STATUS_FAILED ;
164
164
165
165
}
166
166
You can’t perform that action at this time.
0 commit comments