propel-bundle/DependencyInjection/Properties.php

47 lines
859 B
PHP
Raw Normal View History

<?php
2011-08-30 23:29:49 +02:00
/**
* This file is part of the PropelBundle package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT License
*/
namespace Propel\PropelBundle\DependencyInjection;
/**
* Properties.
*
* @author William Durand <william.durand1@gmail.com>
*/
class Properties
{
/**
* Build properties.
*
* @var array
*/
private $properties;
/**
* Default constructor.
*
* @param $properties An array of properties.
*/
2012-05-24 12:44:48 +02:00
public function __construct(array $properties = array())
{
$this->properties = $properties;
}
/**
* Get properties.
*
2012-07-19 00:44:18 +02:00
* @return array An array of properties.
*/
2012-05-24 12:44:48 +02:00
public function getProperties()
{
return $this->properties;
}
}