MIOLO20
Carregando...
Procurando...
Nenhuma entrada encontrada
Helper.php
Ir para a documentação deste ficheiro.
1<?php
2
4
5/*
6 * This file is part of the Symfony framework.
7 *
8 * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
9 *
10 * This source file is subject to the MIT license that is bundled
11 * with this source code in the file LICENSE.
12 */
13
19abstract class Helper implements HelperInterface
20{
21 protected $helperSet = null;
22
28 public function setHelperSet(HelperSet $helperSet = null)
29 {
30 $this->helperSet = $helperSet;
31 }
32
38 public function getHelperSet()
39 {
40 return $this->helperSet;
41 }
42}
setHelperSet(HelperSet $helperSet=null)
Definição Helper.php:28