/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Repository
NameSizeModeActions
AbstractMultiShopObjectModelRepository.php92550644editdlrm
AbstractObjectModelRepository.php101310644editdlrm
RepositoryInterface.php14020644editdlrm
ShopConstraintTrait.php20540644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Repository/RepositoryInterface.php (1402B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Repository; /** * Define the contract to access entities. * * A repository should only contains methods for querying the data. */ interface RepositoryInterface { /** * Returns the complete list of items. * * @return array */ public function findAll(); }