vendor/sensio/framework-extra-bundle/src/Configuration/ConfigurationAnnotation.php line 21

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Sensio\Bundle\FrameworkExtraBundle\Configuration;
  11. /**
  12.  * Base configuration annotation.
  13.  *
  14.  * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  15.  */
  16. abstract class ConfigurationAnnotation implements ConfigurationInterface
  17. {
  18.     public function __construct(array $values)
  19.     {
  20.         foreach ($values as $k => $v) {
  21.             if (!method_exists($this$name 'set'.$k)) {
  22.                 throw new \RuntimeException(sprintf('Unknown key "%s" for annotation "@%s".'$k, static::class));
  23.             }
  24.             $this->$name($v);
  25.         }
  26.     }
  27. }