Newscoop\Entity\Snippet::getFieldsWithoutBackend PHP Метод

getFieldsWithoutBackend() публичный Метод

Getter for fields without the Backend scope
public getFieldsWithoutBackend ( ) : ArrayCollection
Результат Doctrine\Common\Collections\ArrayCollection
    public function getFieldsWithoutBackend()
    {
        return $this->fields->filter(function ($field) {
            if ($field->getFieldScope() == 'frontend') {
                return $field;
            }
        });
    }