2016-09-05 20:25:38 +05:30
|
|
|
<?php
|
|
|
|
namespace api\modules\session\models\protocols;
|
|
|
|
|
|
|
|
abstract class BaseJoin implements JoinInterface {
|
|
|
|
|
2017-09-19 22:36:16 +05:30
|
|
|
protected function isEmpty($value): bool {
|
|
|
|
return $value === null || $value === '';
|
|
|
|
}
|
2016-09-05 20:25:38 +05:30
|
|
|
|
|
|
|
}
|