PATH:
home
/
centosnipponia
/
public_html
/
apptt-oldgit
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Routing
<?php namespace Illuminate\Routing; use Illuminate\Contracts\View\Factory as ViewFactory; class ViewController extends Controller { /** * The view factory implementation. * * @var \Illuminate\Contracts\View\Factory */ protected $view; /** * Create a new controller instance. * * @param \Illuminate\Contracts\View\Factory $view * @return void */ public function __construct(ViewFactory $view) { $this->view = $view; } /** * Invoke the controller method. * * @param array $args * @return \Illuminate\Contracts\View\View */ public function __invoke(...$args) { [$view, $data] = array_slice($args, -2); return $this->view->make($view, $data); } }
[+]
..
[-] AbstractRouteCollection.php
[edit]
[-] CompiledRouteCollection.php
[edit]
[+]
Console
[+]
Contracts
[-] Controller.php
[edit]
[-] ControllerDispatcher.php
[edit]
[-] ControllerMiddlewareOptions.php
[edit]
[+]
Events
[+]
Exceptions
[-] ImplicitRouteBinding.php
[edit]
[-] LICENSE.md
[edit]
[+]
Matching
[+]
Middleware
[-] MiddlewareNameResolver.php
[edit]
[-] PendingResourceRegistration.php
[edit]
[-] Pipeline.php
[edit]
[-] RedirectController.php
[edit]
[-] Redirector.php
[edit]
[-] ResourceRegistrar.php
[edit]
[-] ResponseFactory.php
[edit]
[-] Route.php
[edit]
[-] RouteAction.php
[edit]
[-] RouteBinding.php
[edit]
[-] RouteCollection.php
[edit]
[-] RouteCollectionInterface.php
[edit]
[-] RouteDependencyResolverTrait.php
[edit]
[-] RouteFileRegistrar.php
[edit]
[-] RouteGroup.php
[edit]
[-] RouteParameterBinder.php
[edit]
[-] RouteRegistrar.php
[edit]
[-] RouteSignatureParameters.php
[edit]
[-] RouteUri.php
[edit]
[-] RouteUrlGenerator.php
[edit]
[-] Router.php
[edit]
[-] RoutingServiceProvider.php
[edit]
[-] SortedMiddleware.php
[edit]
[-] UrlGenerator.php
[edit]
[-] ViewController.php
[edit]
[-] composer.json
[edit]
[-] .htaccess.disabled
[edit]