1
0
Fork 0

Simplify Rule->getJob()

pull/7480/head
Markus Staab 2018-07-18 20:50:46 +02:00 committed by GitHub
parent b44c9acae6
commit 05499099a0
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);