This commit is contained in:
2022-03-15 10:52:21 +01:00
parent 12814f64d4
commit ef94f03cde
476 changed files with 4612 additions and 1563 deletions

View File

@@ -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
{
}