App\Http\Controllers\VendorController::__construct PHP Method

__construct() public method

public __construct ( VendorRepository $vendorRepo, VendorService $vendorService )
$vendorRepo App\Ninja\Repositories\VendorRepository
$vendorService App\services\VendorService
    public function __construct(VendorRepository $vendorRepo, VendorService $vendorService)
    {
        //parent::__construct();
        $this->vendorRepo = $vendorRepo;
        $this->vendorService = $vendorService;
    }