Neos\Flow\Mvc\Controller\StandardController::indexAction PHP Метод

indexAction() публичный Метод

Displays the default view
public indexAction ( ) : void | string
Результат void | string
    public function indexAction()
    {
        if (!$this->request instanceof ActionRequest) {
            return "\nWelcome to Flow!\n\n" . "This is the default view of the Flow MVC object. You see this message because no \n" . "other view is available. Please refer to the Developer's Guide for more information \n" . "how to create and configure one.\n\n" . "Have fun! The Flow Development Team\n";
        }
    }
StandardController