for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
// Copyright (c) Lellys Informática. All rights reserved. See License.txt in the project root for license information.
namespace Collections;
/**
* Provides the abstract base class for a strongly typed collection.
*/
abstract class AbstractConstCollectionArray extends AbstractCollection implements
\Serializable,
\JsonSerializable
{
}