MediaWiki  1.34.0
DateFormatterFactory.php
Go to the documentation of this file.
1 <?php
2 
5  private $instances;
6 
11  public function get( Language $lang ) {
12  $code = $lang->getCode();
13  if ( !isset( $this->instances[$code] ) ) {
14  $this->instances[$code] = new DateFormatter( $lang );
15  }
16  return $this->instances[$code];
17  }
18 }
$lang
if(!isset( $args[0])) $lang
Definition: testCompression.php:33
DateFormatterFactory
Definition: DateFormatterFactory.php:3
Language
Internationalisation code.
Definition: Language.php:37
DateFormatter
Date formatter.
Definition: DateFormatter.php:37
DateFormatterFactory\$instances
DateFormatter[] $instances
Definition: DateFormatterFactory.php:5