We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I want create new Route and display values in debug bar, i must extend Route class. What do you think about new interface with two methods?
interface IRouteMeta { public funciton getDefaults(); public function getMask(); }
Class route must edit.
class Route implements IRoute, IRouteMeta {}
And I will use like this
class MyRoute implements IRoute, IRouteMeta {}
instance of
class MyRoute extends Route {}
RoutingPanel will change condition to new interface.
Or append both methods to IRoute interface?
Edit Renamed IRouteBar -> IRouteMeta
The text was updated successfully, but these errors were encountered:
@h4kuna interface is a good idea, just a suggestion: IRouteBar -> IRouteMeta
IRouteBar
IRouteMeta
Sorry, something went wrong.
No branches or pull requests
If I want create new Route and display values in debug bar, i must extend Route class. What do you think about new interface with two methods?
Class route must edit.
And I will use like this
instance of
RoutingPanel will change condition to new interface.
Or append both methods to IRoute interface?
Edit
Renamed IRouteBar -> IRouteMeta
The text was updated successfully, but these errors were encountered: