laravel-commode/bladed

View on GitHub
src/LaravelCommode/Bladed/Interfaces/IBladedCommand.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace LaravelCommode\Bladed\Interfaces;

use Illuminate\Contracts\View\Factory;

interface IBladedCommand
{
    /**
     * @param Factory $factory
     * @return $this
     */
    public function setEnvironment(Factory $factory = null);

    /**
     * @return Factory
     */
    public function getEnvironment();

    public function extend($methodName, \Closure $callable, $rebindScope = false);
}