* @author Jean-Pascal MILCENT * @author Aurelien PERONNET * @license GPL v3 * @license CECILL v2 * @copyright 1999-2014 Tela Botanica */ abstract class CelScript extends Script { private $projetNom = null; public function getProjetNom() { return $this->projetNom; } protected function initialiserProjet($projetNom) { $this->projetNom = $projetNom; } }