14 lines
215 B
PHP
14 lines
215 B
PHP
<?php
|
|
namespace App\Bean\Model\Base;
|
|
|
|
use EasySwoole\Spl\SplBean;
|
|
|
|
abstract class BaseBean extends SplBean
|
|
{
|
|
function toArrayNotNull(): array
|
|
{
|
|
return $this->toArray(self::FILTER_NOT_NULL);
|
|
}
|
|
|
|
}
|