We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
TeensyPHP provides the stop() method when you wish to exist the process early.
stop(int $code = 0)
<?php function Authentication() { // prevent process from going further: stop(1) }
You should stop() instead of exit(), as it will enable you to write tests, that capture the the output of controller actions.
There was an error while loading. Please reload this page.