File "Like.php"

Full Path: /home/vantageo/public_html/cache/cache/.wp-cli/wp-content/plugins/revslider/includes/InstagramScraper/Model/Like.php
File size: 749 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
        }
    }

}