PHP Class Adamgoose\Routing\Annotations\AbstractPath

Show file Open project: adamgoose/laravel-annotations

Public Properties

Property Type Description
$domain string The domain the route responds to.
$middleware array The path's middleware.
$path string The path / URI the route responds to.
$verb array The HTTP verb the route responds to.
$where array The path's "where" clauses.

Property Details

$domain public property

The domain the route responds to.
public string $domain
return string

$middleware public property

The path's middleware.
public array $middleware
return array

$path public property

The path / URI the route responds to.
public string $path
return string

$verb public property

The HTTP verb the route responds to.
public array $verb
return array

$where public property

The path's "where" clauses.
public array $where
return array