nest under root CakeProducts config
CI / testsuite (mysql, 8.1, ) (push) Failing after 0s
Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 0s
Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 0s
Details
CI / Coding Standard & Static Analysis (push) Failing after 0s
Details
CI / testsuite (mysql, 8.1, ) (push) Failing after 0s
Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 0s
Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 0s
Details
CI / Coding Standard & Static Analysis (push) Failing after 0s
Details
This commit is contained in:
parent
3f45e46f31
commit
b6230817eb
|
@ -131,7 +131,9 @@ class ProductCatalogsController extends AppController
|
|||
if ($this->_productCatalogsTable instanceof Table) {
|
||||
return $this->_productCatalogsTable;
|
||||
}
|
||||
$this->_productCatalogsTable = TableRegistry::getTableLocator()->get(Configure::read('ProductCatalogs.table', 'CakeProducts.ProductCatalogs'));
|
||||
$this->_productCatalogsTable = TableRegistry::getTableLocator()->get(
|
||||
Configure::read('CakeProducts.ProductCatalogs.table', 'CakeProducts.ProductCatalogs')
|
||||
);
|
||||
|
||||
return $this->_productCatalogsTable;
|
||||
}
|
||||
|
|
|
@ -30,7 +30,9 @@ class ProductCategoriesController extends AppController
|
|||
if ($this->_productCategoriesTable instanceof Table) {
|
||||
return $this->_productCategoriesTable;
|
||||
}
|
||||
$this->_productCategoriesTable = TableRegistry::getTableLocator()->get(Configure::read('ProductCategories.table', 'CakeProducts.ProductCategories'));
|
||||
$this->_productCategoriesTable = TableRegistry::getTableLocator()->get(
|
||||
Configure::read('CakeProducts.ProductCategories.table', 'CakeProducts.ProductCategories')
|
||||
);
|
||||
|
||||
return $this->_productCategoriesTable;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue