PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
revslider
/
includes
/
InstagramScraper
/
Model
<?php namespace InstagramScraper\Model; class Location extends AbstractModel { /** * @var array */ protected static $initPropertiesMap = [ 'id' => 'id', 'has_public_page' => 'hasPublicPage', 'name' => 'name', 'slug' => 'slug', 'lat' => 'lat', 'lng' => 'lng', 'modified' => 'modified' ]; /** * @var */ protected $id; /** * @var */ protected $hasPublicPage; /** * @var */ protected $name; /** * @var */ protected $slug; /** * @var */ protected $lng; /** * @var */ protected $lat; /** * @var bool */ protected $isLoaded = false; /** * @var */ protected $modified; /** * @return mixed */ public function getId() { return $this->id; } /** * @return mixed */ public function getHasPublicPage() { return $this->hasPublicPage; } /** * @return mixed */ public function getName() { return $this->name; } /** * @return mixed */ public function getSlug() { return $this->slug; } /** * @return mixed */ public function getLng() { return $this->lng; } /** * @return mixed */ public function getLat() { return $this->lat; } /** * @return mixed */ public function getModified() { return $this->modified; } }
[+]
..
[-] 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]