public function __construct($row = false)
 {
     parent::__construct($row);
     if ($row) {
         $this->id = $row['id'];
         $this->profile_updated = $row['profile_updated'];
     }
 }
 public function __construct($row = false)
 {
     parent::__construct($row);
     if ($row) {
         $this->id = $row['id'];
         $this->last_favorite_id = $row['last_favorite_id'];
         $this->last_reply_id = $row['last_reply_id'];
     }
 }
 public function __construct($row = false)
 {
     parent::__construct($row);
     if ($row) {
         $this->id = $row['id'];
         $this->last_page_fetched_replies = $row['last_page_fetched_replies'];
         $this->last_page_fetched_tweets = $row['last_page_fetched_tweets'];
         $this->last_favorite_id = $row['last_favorite_id'];
     }
 }
 public function __construct($row = false)
 {
     parent::__construct($row);
     if ($row) {
         $this->id = $row['id'];
         $this->followed_by_next_cursor = $row['followed_by_next_cursor'];
         $this->follows_next_cursor = $row['follows_next_cursor'];
         $this->next_max_like_id = $row['next_max_like_id'];
     }
 }
Exemple #5
0
 /**
  * {@inheritdoc}
  */
 public function __construct(array $data)
 {
     trigger_error(sprintf('The class %s has been deprecated; please use %s\\Instance,' . ' and the annotation @Instance or @Annotation\\Instance', __CLASS__, __NAMESPACE__), E_USER_DEPRECATED);
     parent::__construct($data);
 }