Index: trunk/extensions/OpenID/OpenIDProvider.body.php |
— | — | @@ -20,9 +20,13 @@ |
21 | 21 | * @ingroup Extensions |
22 | 22 | */ |
23 | 23 | class OpenIDProvider { |
| 24 | + /** |
| 25 | + * Properties about this provider |
| 26 | + * @var string |
| 27 | + */ |
24 | 28 | protected $id, $name, $label, $url; |
25 | 29 | |
26 | | - function __construct( $id, $name, $label, $url ) { |
| 30 | + public function __construct( $id, $name, $label, $url ) { |
27 | 31 | $this->id = $id; |
28 | 32 | $this->name = $name; |
29 | 33 | $this->label = $label; |