Conditions | 3 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function isExtensibilityElementOK(&$msg = null) |
||
40 | { |
||
41 | if (!$this->isObjectNullOrType( |
||
42 | '\AlgoWeb\ODataMetadata\MetadataV3\edm\TDocumentationType', |
||
43 | $this->documentation |
||
44 | )) { |
||
45 | return false; |
||
46 | } |
||
47 | if (!$this->isObjectNullOrOK($this->documentation, $msg)) { |
||
48 | return false; |
||
49 | } |
||
50 | return true; |
||
51 | } |
||
52 | } |
||
53 |