From 98aae9ed316b73a78cc054aaf95d57585c3fbaef Mon Sep 17 00:00:00 2001 From: Matthieu Guffroy <mattgu74@gmail.com> Date: Wed, 18 Jun 2014 21:42:44 +0200 Subject: [PATCH] fix errors --- class/{list.php => listview.php} | 2 +- class/objet.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename class/{list.php => listview.php} (95%) diff --git a/class/list.php b/class/listview.php similarity index 95% rename from class/list.php rename to class/listview.php index 5995964..1b180ec 100644 --- a/class/list.php +++ b/class/listview.php @@ -1,6 +1,6 @@ <?php -class List +class ListView { protected $title; protected $objArray; diff --git a/class/objet.php b/class/objet.php index b8992da..7512c16 100644 --- a/class/objet.php +++ b/class/objet.php @@ -142,6 +142,6 @@ class Objet } public function getList($title) { - return new List(get_called_class(), $title); + return new ListView(get_called_class(), $title); } } \ No newline at end of file -- GitLab