ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
NullClause.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
26 class NullClause implements ClauseInterface
27 {
28  public function isNegated(): bool
29  {
30  return false;
31  }
32 
33  public function isJoin(): bool
34  {
35  return false;
36  }
37 
39  {
40  return null;
41  }
42 
44  {
45  return null;
46  }
47 }