File "Services.php"
Full Path: /home/attunedd/public_html/wp-content/plugins/wpide/App/Services/Services.php
File size: 262 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace WPIDE\App\Services;
class Services
{
protected $services = [];
public function __construct(array $services = [])
{
$this->services = $services;
}
public function get()
{
return $this->services;
}
}