X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FLicenses.php;h=0bcbc91b2216eb30bf5da18190d3dc30a6006be0;hb=058d03327886a5bc07bb5a6f53d69d9caa208069;hp=e8aee0b529a987a6e2bb3e77bd54c45bfb8fcf17;hpb=4f741418fcb0a85f1ccfa3a72e5faa34259b8e53;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Licenses.php b/includes/Licenses.php index e8aee0b529..0bcbc91b22 100644 --- a/includes/Licenses.php +++ b/includes/Licenses.php @@ -28,31 +28,25 @@ * A License class for use on Special:Upload */ class Licenses extends HTMLFormField { - /** - * @var string - */ + /** @var string */ protected $msg; - /** - * @var array - */ + /** @var array */ protected $licenses = array(); - /** - * @var string - */ + /** @var string */ protected $html; /**#@-*/ /** - * Constructor - * - * @param $params array + * @param array $params */ public function __construct( $params ) { parent::__construct( $params ); - $this->msg = empty( $params['licenses'] ) ? wfMessage( 'licenses' )->inContentLanguage()->plain() : $params['licenses']; + $this->msg = empty( $params['licenses'] ) + ? wfMessage( 'licenses' )->inContentLanguage()->plain() + : $params['licenses']; $this->selected = null; $this->makeLicenses(); @@ -89,7 +83,7 @@ class Licenses extends HTMLFormField { } /** - * @param $str + * @param string $str * @return array */ protected function trimStars( $str ) { @@ -98,14 +92,14 @@ class Licenses extends HTMLFormField { } /** - * @param $list - * @param $path - * @param $item + * @param array $list + * @param array $path + * @param mixed $item */ protected function stackItem( &$list, $path, $item ) { $position =& $list; if ( $path ) { - foreach( $path as $key ) { + foreach ( $path as $key ) { $position =& $position[$key]; } } @@ -113,8 +107,8 @@ class Licenses extends HTMLFormField { } /** - * @param $tagset - * @param $depth int + * @param array $tagset + * @param int $depth */ protected function makeHtml( $tagset, $depth = 0 ) { foreach ( $tagset as $key => $val ) { @@ -139,10 +133,10 @@ class Licenses extends HTMLFormField { } /** - * @param $message - * @param $value - * @param $attribs null - * @param $depth int + * @param string $message + * @param string $value + * @param null|array $attribs + * @param int $depth * @return string */ protected function outputOption( $message, $value, $attribs = null, $depth = 0 ) { @@ -171,7 +165,7 @@ class Licenses extends HTMLFormField { /** * Accessor for $this->html * - * @param $value bool + * @param bool $value * * @return string */ @@ -198,20 +192,14 @@ class Licenses extends HTMLFormField { * A License class for use on Special:Upload (represents a single type of license). */ class License { - /** - * @var string - */ - var $template; + /** @var string */ + public $template; - /** - * @var string - */ - var $text; + /** @var string */ + public $text; /** - * Constructor - * - * @param string $str license name?? + * @param string $str License name?? */ function __construct( $str ) { list( $text, $template ) = explode( '|', strrev( $str ), 2 );