mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 04:47:10 +08:00
23 lines
445 B
PHP
23 lines
445 B
PHP
|
<?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);
|
||
|
}
|
||
|
}
|