Last active
August 29, 2015 14:13
-
-
Save jrbasso/031fffc8f5eeaf872d4e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Cake; | |
class Router { | |
protected static $_collection; | |
protected static $_vars; | |
public static function test() { | |
static::$_collection = new \stdClass(); | |
static::$_vars = get_class_vars(get_called_class()); | |
} | |
} | |
Router::test(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment