Merge pull request #7480 from staabm/patch-3

Simplify Rule->getJob()
main
Jordi Boggiano 6 years ago committed by GitHub
commit 0d92c8df63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);

Loading…
Cancel
Save