blob: c5430d09c50ab5be299df96c5fca475ff1d931d5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
namespace MediaWiki;
/**
* An interface to check for emptiness of an object
*/
interface Emptiable {
/**
* Check if object is empty
* @return bool Is it empty
*/
public function isEmpty();
}
|