Skip to content

Instantly share code, notes, and snippets.

View autokludge's full-sized avatar

Jesse Robertson autokludge

View GitHub Profile
@autokludge
autokludge / ide_helper.php
Created August 22, 2012 12:48
Laravel3 IDE Helper
<?php
class Auth extends Laravel\Auth {}
/**
* @method static add(string $name, string $source, array $dependencies = array(), array $attributes = array())
* @method static string styles()
* @method static string scripts()
*/
class Asset extends Laravel\Asset {}
class Autoloader extends Laravel\Autoloader {}
class Bundle extends Laravel\Bundle {}
@autokludge
autokludge / CI_ide_helper.php
Created August 22, 2012 12:48 — forked from topdown/CI_phpStorm.php
Code Completion helper for CodeIgniter
<?php die('This file is not really here!');
/**
* ------------- DO NOT UPLOAD THIS FILE TO LIVE SERVER ---------------------
*
* Implements code completion for CodeIgniter in phpStorm
* phpStorm indexes all class constructs, so if this file is in the project it will be loaded.
* -------------------------------------------------------------------
* Drop the following file into a CI project in phpStorm
* You can put it in the project root and phpStorm will load it.