Skip to content
Commits on Source (1)
......@@ -27,4 +27,3 @@ For a concrete implementation, see [`php-extended/php-information`](https://gith
## License
MIT (See [license file](LICENSE)).
......@@ -30,9 +30,9 @@ interface InformationInterface
/**
* Makes the given visitor to visit this interface.
*
* @param InformationVisitorInterface $visit
* @param InformationVisitorInterface $visitor
* @return boolean whether the visit may continue.
*/
public function visit(InformationVisitorInterface $visit);
public function visit(InformationVisitorInterface $visitor);
}