diff options
Diffstat (limited to 'includes/cache/LinkBatch.php')
-rw-r--r-- | includes/cache/LinkBatch.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/cache/LinkBatch.php b/includes/cache/LinkBatch.php index 72a2e8e5..48b60aa9 100644 --- a/includes/cache/LinkBatch.php +++ b/includes/cache/LinkBatch.php @@ -39,7 +39,7 @@ class LinkBatch { protected $caller; function __construct( $arr = array() ) { - foreach( $arr as $item ) { + foreach ( $arr as $item ) { $this->addObj( $item ); } } @@ -98,7 +98,7 @@ class LinkBatch { * @return bool */ public function isEmpty() { - return ($this->getSize() == 0); + return $this->getSize() == 0; } /** |