Skip to content

Instantly share code, notes, and snippets.

@nolar
Created May 31, 2012 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nolar/2844428 to your computer and use it in GitHub Desktop.
Save nolar/2844428 to your computer and use it in GitHub Desktop.
Accidentially found in code
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