for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* \AppserverIo\Doppelgaenger\Entities\Lists\ParameterDefinitionList
*
* NOTICE OF LICENSE
* This source file is subject to the Open Software License (OSL 3.0)
* that is available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* PHP version 5
* @author Bernhard Wick <[email protected]>
* @copyright 2015 TechDivision GmbH - <[email protected]>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link https://github.com/appserver-io/doppelgaenger
* @link http://www.appserver.io/
*/
namespace AppserverIo\Doppelgaenger\Entities\Lists;
* A typed list for ParameterDefinition objects
class ParameterDefinitionList extends AbstractTypedList
{
* Default constructor
public function __construct()
parent::__construct();
$this->itemType = 'AppserverIo\Doppelgaenger\Entities\Definitions\ParameterDefinition';
}