1
0
mirror of https://github.com/elyby/accounts.git synced 2025-03-01 06:03:16 +05:30

11 lines
212 B
PHP
Raw Normal View History

<?php
namespace api\modules\session\models\protocols;
abstract class BaseJoin implements JoinInterface {
protected function isEmpty($value): bool {
return $value === null || $value === '';
}
}