Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
0.00% covered (danger)
0.00%
0 / 1
50.00% covered (warning)
50.00%
1 / 2
CRAP
80.00% covered (warning)
80.00%
4 / 5
ControllerFactory
0.00% covered (danger)
0.00%
0 / 1
50.00% covered (warning)
50.00%
1 / 2
2.03
80.00% covered (warning)
80.00%
4 / 5
 __construct($configuration, $namespace, $parentId = Null)
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
4 / 4
 build($instanceName)
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
<?php
/**
 *
 */
namespace aae\cms {
    /**
     * @author Axel Ancona Esselmann
     * @package aae\cms
     */
    class ControllerFactory extends \aae\std\DIFactory {
        protected $_namespace, $_parentId;
        public function __construct($configuration, $namespace, $parentId = Null) {
            parent::__construct($configuration);
            $this->_namespace = $namespace;
            $this->_parentId = $parentId;
        }
        public function build($instanceName) {
        }
    }
}