1
0
Fork 0

Merge pull request #7480 from staabm/patch-3

Simplify Rule->getJob()
pull/7483/head
Jordi Boggiano 2018-07-20 11:25:33 +02:00 committed by GitHub
commit 0d92c8df63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ abstract class Rule
public function getJob()
{
return isset($this->job) ? $this->job : null;
return $this->job;
}
abstract public function equals(Rule $rule);