Your IP : 216.73.216.95


Current Path : /var/www/html/wp-content/plugins/wpide/App/Services/
Upload File :
Current File : /var/www/html/wp-content/plugins/wpide/App/Services/Services.php

<?php
namespace WPIDE\App\Services;

class Services
{
    protected $services = [];

    public function __construct(array $services = [])
    {

        $this->services = $services;
    }

    public function get()
    {
        return $this->services;
    }
}