Skip to content

Laravel Facade Support

吕海涛 edited this page Mar 6, 2018 · 4 revisions

First install the barryvdh/laravel-ide-helper and generate the _ide_helper.php file.

Then create .autoload.php, and put contents

<?php
require './vendor/autoload.php';
require './_ide_helper.php';

And finally create .phpcd.vim, and put contents

let g:phpcd_autoload_path = '.autoload.php'
Clone this wiki locally