Acl\AclExtras::out PHP 메소드

out() 공개 메소드

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