- Removed double spaces - Added space after if/switch/foreach - Removed space on elseif - Added space around parentheses - Added newline at end of file - Removed space before semicolon at end of line Change-Id: Id40b87e04786c6111e6686d7f7eea1e588bdf37d
28 lines
513 B
PHP
28 lines
513 B
PHP
<?php
|
|
|
|
class FakeDimensionFile extends File {
|
|
public $mustRender = false;
|
|
|
|
public function __construct( $dimensions ) {
|
|
parent::__construct( Title::makeTitle( NS_FILE, 'Test' ),
|
|
new NullRepo( null ) );
|
|
|
|
$this->dimensions = $dimensions;
|
|
}
|
|
|
|
public function getWidth( $page = 1 ) {
|
|
return $this->dimensions[0];
|
|
}
|
|
|
|
public function getHeight( $page = 1 ) {
|
|
return $this->dimensions[1];
|
|
}
|
|
|
|
public function mustRender() {
|
|
return $this->mustRender;
|
|
}
|
|
|
|
public function getPath() {
|
|
return '';
|
|
}
|
|
}
|