diff --git a/examples/sections_iterator_object/Sections_Iterator_Object.php b/examples/section_iterator_objects/SectionIteratorObject.php similarity index 83% rename from examples/sections_iterator_object/Sections_Iterator_Object.php rename to examples/section_iterator_objects/SectionIteratorObject.php index e517fe0..5a592ab 100644 --- a/examples/sections_iterator_object/Sections_Iterator_Object.php +++ b/examples/section_iterator_objects/SectionIteratorObject.php @@ -1,17 +1,16 @@ 'And it worked the second time.', 'bar' => 'As well as the third.' ); - public function __get($key) - { + public function __get($key) { return isset($this->_data[$key]) ? $this->_data[$key] : NULL; } - public function __isset($key) - { + public function __isset($key) { return isset($this->_data[$key]); } } \ No newline at end of file diff --git a/examples/sections_iterable_object/sections.mustache b/examples/section_magic_objects/section_magic_object.mustache similarity index 100% rename from examples/sections_iterable_object/sections.mustache rename to examples/section_magic_objects/section_magic_object.mustache diff --git a/examples/sections_iterator_object/sections.txt b/examples/section_magic_objects/section_magic_object.txt similarity index 100% rename from examples/sections_iterator_object/sections.txt rename to examples/section_magic_objects/section_magic_object.txt diff --git a/examples/sections_iterable_object/Sections_Iterable_Object.php b/examples/section_objects/SectionObjects.php similarity index 70% rename from examples/sections_iterable_object/Sections_Iterable_Object.php rename to examples/section_objects/SectionObjects.php index ee2f661..41b7d84 100644 --- a/examples/sections_iterable_object/Sections_Iterable_Object.php +++ b/examples/section_objects/SectionObjects.php @@ -1,17 +1,16 @@