]> git.mxchange.org Git - core.git/commitdiff
Continued: master
authorRoland Häder <roland@mxchange.org>
Sun, 2 Feb 2025 01:47:20 +0000 (02:47 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 2 Feb 2025 01:47:20 +0000 (02:47 +0100)
- added type-hints

framework/main/interfaces/visitor/class_Visitable.php

index 314a3a43bc847e55b9c6e2cbb9f9fec6e6dfc3ae..fb53d89e8e40119d74e26556ad7689eba4929d58 100644 (file)
@@ -35,6 +35,6 @@ interface Visitable extends FrameworkInterface {
         * @param       $visitorInstance        An instance of a Visitor class
         * @return      void
         */
-       function accept (Visitor $visitorInstance);
+       function accept (Visitor $visitorInstance): void;
 
 }