maj
This commit is contained in:
@@ -3,15 +3,21 @@
|
||||
/**
|
||||
* @package Grav\Framework\Media
|
||||
*
|
||||
* @copyright Copyright (c) 2015 - 2021 Trilby Media, LLC. All rights reserved.
|
||||
* @copyright Copyright (c) 2015 - 2022 Trilby Media, LLC. All rights reserved.
|
||||
* @license MIT License; see LICENSE file for details.
|
||||
*/
|
||||
|
||||
namespace Grav\Framework\Media\Interfaces;
|
||||
|
||||
use ArrayAccess;
|
||||
use Countable;
|
||||
use Iterator;
|
||||
|
||||
/**
|
||||
* Class implements media collection interface.
|
||||
* @extends ArrayAccess<string,MediaObjectInterface>
|
||||
* @extends Iterator<string,MediaObjectInterface>
|
||||
*/
|
||||
interface MediaCollectionInterface extends \ArrayAccess, \Countable, \Iterator
|
||||
interface MediaCollectionInterface extends ArrayAccess, Countable, Iterator
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user