MediaWiki master
Emptiable.php
Go to the documentation of this file.
1<?php
2namespace MediaWiki\Libs;
3
7interface Emptiable {
8
13 public function isEmpty();
14
15}
16
18class_alias( Emptiable::class, 'MediaWiki\\Emptiable' );
An interface to check for emptiness of an object.
Definition Emptiable.php:7
isEmpty()
Check if object is empty.