mirror of
https://github.com/koel/koel
synced 2024-12-21 10:03:10 +00:00
14 lines
296 B
PHP
14 lines
296 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Values;
|
||
|
|
||
|
use Illuminate\Support\Collection;
|
||
|
|
||
|
final class SmartPlaylistRuleGroupCollection extends Collection
|
||
|
{
|
||
|
public static function create(array $array): self
|
||
|
{
|
||
|
return new self(collect($array)->transform([SmartPlaylistRuleGroup::class, 'create']));
|
||
|
}
|
||
|
}
|