SuiteCRM 8 initial commit

This commit is contained in:
Dillon-Brown 2021-03-30 19:12:01 +01:00
commit c895877b7e
547 changed files with 40449 additions and 0 deletions

View file

@ -0,0 +1,22 @@
<?php
namespace SuiteCRM\Core\Base\Module\Service;
use SuiteCRM\Core\Base\Helper\Data\Collection;
/**
* Class ServiceCollection
* @package SuiteCRM\Core\Base\Module\Service
*/
class ServiceCollection extends Collection
{
/**
* Load the service collection
*
* @param array $services Array of services to change
*/
public function __construct($services = [])
{
return parent::load($services);
}
}