Skip to content

Commit

Permalink
Added typehints
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm committed Dec 13, 2019
1 parent 8c8f511 commit ac4c6f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Event/TrackableEventInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ interface TrackableEventInterface
/**
* @return int
*/
public function getTargetIdentifier();
public function getTargetIdentifier(): int;

/**
* @return string
*/
public function getName();
public function getName(): string;
}

0 comments on commit ac4c6f6

Please sign in to comment.