Skip to content

Commit

Permalink
Response: Program: renamed methods isTypeOf*() to isOfType*()
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Kurowski committed Nov 30, 2018
1 parent 767b03c commit bc9529f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Response/Program.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ public function getName()
/**
* @return bool
*/
public function isTypeOfNature()
public function isOfTypeNature()
{
return $this->slug === self::PROGRAM_NATURE;
}

/**
* @return bool
*/
public function isTypeOfSights()
public function isOfTypeSights()
{
return $this->slug === self::PROGRAM_SIGHTS;
}
Expand Down

0 comments on commit bc9529f

Please sign in to comment.