Created
October 12, 2012 20:46
-
-
Save ralphschindler/3881402 to your computer and use it in GitHub Desktop.
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
<?php | |
class SomeClass { | |
/** | |
* @signature __construct(string $authentication) 40 byte auth code | |
* @signature __construct(string $username, string $password) Github Username, Github Password | |
* @signature __construct(array $authentication) array('username' => 'xx', 'password' => xxx) | |
* | |
* @param string|array $authentication | |
*/ | |
public function __construct($authentication = null) | |
{} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment