Not a member of Pastebin yet?
                        Sign Up,
                        it unlocks many cool features!                    
                - <?php
 - abstract class AbstractUser extends \YetORM\Entity
 - {
 - /** @return string */
 - public function getAccout()
 - {
 - return $this->row->account;
 - }
 - /** @return string */
 - public function getCity()
 - {
 - return $this->row->city;
 - }
 - /** @return string */
 - public function getCompany()
 - {
 - return $this->row->company;
 - }
 - /** @return int */
 - public function getCompanyID()
 - {
 - return $this->row->company_id;
 - }
 - /** @return string */
 - public function getEmail()
 - {
 - return $this->row->email;
 - }
 - /** @return string */
 - public function getFax()
 - {
 - return $this->row->fax;
 - }
 - /** @return string */
 - public function getPhone()
 - {
 - return $this->row->phone;
 - }
 - /** @return string */
 - public function getPostcode()
 - {
 - return $this->row->postcode;
 - }
 - /** @return string */
 - public function getStreet()
 - {
 - return $this->row->street;
 - }
 - /** @return int */
 - public function getTaxID()
 - {
 - return $this->row->tax_id;
 - }
 - /** @return string */
 - public function getWebsite()
 - {
 - return $this->row->website;
 - }
 - }
 
Advertisement
 
                    Add Comment                
                
                        Please, Sign In to add comment