diff options
Diffstat (limited to 'public/system/library/googleshopping/library.php')
-rw-r--r-- | public/system/library/googleshopping/library.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/public/system/library/googleshopping/library.php b/public/system/library/googleshopping/library.php new file mode 100644 index 0000000..a9c244e --- /dev/null +++ b/public/system/library/googleshopping/library.php @@ -0,0 +1,19 @@ +<?php + +namespace googleshopping; + +abstract class Library { + protected $registry; + + public function __construct($registry) { + $this->registry = $registry; + } + + public function __get($key) { + return $this->registry->get($key); + } + + public function __set($key, $value) { + $this->registry->set($key, $value); + } +}
\ No newline at end of file |