Example #1
0
 public function add(HtmlAttribute $htmlAttribute)
 {
     if ($_htmlAttribute = $this->find("key", $htmlAttribute->getKey())->getFirst()) {
         $_htmlAttribute->setValue($htmlAttribute->getValue());
         return $this;
     }
     return parent::add($htmlAttribute);
 }
Example #2
0
 /**
  * @param SqlTable $sqlTable
  * @return SqlTableManager
  */
 public function add(SqlTable $sqlTable)
 {
     return parent::add($sqlTable);
 }
Example #3
0
 /**
  * @param File $file
  * @return FileManager
  */
 public function add(File $file)
 {
     return parent::add($file);
 }
Example #4
0
 public function add(HtmlElement $htmlElement)
 {
     return parent::add($htmlElement);
 }
Example #5
0
 public function add(Notify $notify)
 {
     return parent::add($notify);
 }
Example #6
0
 /**
  * @return SqlColumn
  */
 public function current()
 {
     return parent::current();
 }
Example #7
0
 /**
  * @param Route $route
  * @return RouteManager
  */
 public function addRoute(Route $route)
 {
     return parent::add($route);
 }