You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/myfunction would execute to (new myapp)->myfunction();
/myotherfunction would execute to (new myapp)->myotherfunction();
/myredirectedfunction if it was not a method, would execute to (new myapp)->main();
Main Function
When no method is provided in the URL or a method is provided in the URL that does not exist as a public function in the app class, the main() function is executed.