7 lines
93 B
PHP
7 lines
93 B
PHP
|
<?php
|
||
|
|
||
|
$dummy = function(){
|
||
|
if($this instanceof StdClass){
|
||
|
return $this;
|
||
|
}
|
||
|
};
|