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