Created
May 31, 2012 16:06
-
-
Save nolar/2844428 to your computer and use it in GitHub Desktop.
Accidentially found in code
This file contains 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
class marva | |
{ | |
static $l; | |
static $x; | |
/** | |
* Инициализирует на странице | |
* | |
* @static | |
* @param string|false $l параметр l марвы | |
* @param integer|false $x параметр x марвы | |
* @return void | |
*/ | |
static public function init($l=false, $x=false) | |
{ | |
self::$l = $l; | |
self::$x = $x; | |
} | |
… … … |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment