Acl\AclExtras::out PHP Method

out() public method

Will either use shell->out, or controller->Flash->success()
public out ( string $msg ) : void
$msg string The message to output.
return void
    public function out($msg)
    {
        if (!empty($this->controller->Flash)) {
            $this->controller->Flash->success($msg);
        } else {
            $this->Shell->out($msg);
        }
    }