Knp\Bundle\KnpBundlesBundle\Entity\Developer::toSmallArray PHP Method

toSmallArray() public method

public toSmallArray ( )
    public function toSmallArray()
    {
        return array('name' => $this->getName(), 'email' => $this->getEmail(), 'avatarUrl' => $this->getAvatarUrl(), 'fullName' => $this->getFullName(), 'company' => $this->getCompany(), 'location' => $this->getLocation(), 'blog' => $this->getUrl(), 'bundles' => $this->getBundleNames(), 'lastCommitAt' => $this->getLastCommitAt() ? $this->getLastCommitAt()->getTimestamp() : null, 'score' => $this->getScore());
    }