PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
revslider
/
includes
/
InstagramScraper
/
Model
<?php namespace InstagramScraper\Model; class Like extends AbstractModel { /** * @var */ protected $id; /** * @var Account */ protected $username; /** * @return mixed */ public function getId() { return $this->id; } /** * @return mixed */ public function getUserName() { return $this->username; } /** * @param $value * @param $prop */ protected function initPropertiesCustom($value, $prop) { switch ($prop) { case 'id': $this->id = $value; break; case 'username': $this->username = $value; break; } } }
[+]
..
[-] AbstractModel.php
[edit]
[-] Location.php
[edit]
[-] UserStories.php
[edit]
[-] Comment.php
[edit]
[-] Media.php
[edit]
[-] Like.php
[edit]
[-] CarouselMedia.php
[edit]
[-] Account.php
[edit]
[-] Tag.php
[edit]
[-] Story.php
[edit]