File "AbstractModel.php"

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

<?php

namespace InstagramScraper\Model;

use InstagramScraper\Traits\ArrayLikeTrait;
use InstagramScraper\Traits\InitializerTrait;

/**
 * Class AbstractModel
 * @package InstagramScraper\Model
 */
abstract class AbstractModel implements \ArrayAccess
{
    use InitializerTrait, ArrayLikeTrait;

    /**
     * @var array
     */
    protected static $initPropertiesMap = [];

    /**
     * @return array
     */
    public static function getColumns()
    {
        return \array_keys(static::$initPropertiesMap);
    }
}