Quickstart
in package
Quickstart prepares a basic and simple VISU runtime environemnt to give you, you guessed it, a quick start. It is not intended to be used in large and complex apps but rather for quick prototyping, testing and learning.
VISU Quickstart will cut a lot of corners and make a lot of assumptions for you.
Additionally quickstart can expose global aliases for the runtime alla Laravel's Facades. This is purely optional and again just for quick prototyping, testing and learning.
Table of Contents
Properties
- $app : QuickstartApp
- Instance of the app we are building and running.
Methods
- __construct() : mixed
- Create a new Quickstart instance.
- app() : QuickstartApp
- Returns the app instance.
- run() : void
- Run the quickstart app.
Properties
$app
Instance of the app we are building and running.
private
QuickstartApp
$app
Methods
__construct()
Create a new Quickstart instance.
public
__construct(callable(QuickstartOptions): void $appBuilder) : mixed
Parameters
- $appBuilder : callable(QuickstartOptions): void
app()
Returns the app instance.
public
app() : QuickstartApp
Return values
QuickstartApprun()
Run the quickstart app.
public
run() : void