11 lines
251 B
PHP
11 lines
251 B
PHP
<?php
|
|
|
|
namespace googleshopping\traits;
|
|
|
|
use \googleshopping\Googleshopping;
|
|
|
|
trait LibraryLoader {
|
|
protected function loadLibrary($store_id) {
|
|
$this->registry->set('googleshopping', new Googleshopping($this->registry, $store_id));
|
|
}
|
|
} |