1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-10 17:12:51 +00:00

Simplify Rule->getJob()

This commit is contained in:
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

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