Skip to content

Commit

Permalink
Add isTracked method to interface
Browse files Browse the repository at this point in the history
  • Loading branch information
syrm committed Dec 28, 2016
1 parent 0243c54 commit 172e1f2
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -7,5 +7,15 @@
*/
interface NotifyPropertyChangedInterface
{
/**
* Enable tracking on object.
*/
public function track();

/**
* Check if object is tracked.
*
* @return bool
*/
public function isTracked(): bool;
}

0 comments on commit 172e1f2

Please sign in to comment.