ks465 / yii2-utils

A pack of multiple components and widgets, especially designed for simpler and more generic coding
GNU General Public License v2.0
0 stars 0 forks source link

Parent Child Trait #29

Closed ks465 closed 5 years ago

ks465 commented 5 years ago

Better return a notice:

 public function getParentTitle(): string
    {
        if (empty($this->parent)) {
            return 'شناخته نشد!';
        }

        return $this->parent->{$this->parent->getTitleField()};
    }
ks465 commented 5 years ago

Done