/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Adapter/Support
NameSizeModeActions
ContactDeleter.php23470644editdlrm
ContactRepository.php15670644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Adapter/Support/ContactRepository.php (1567B)
* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Adapter\Support; use PrestaShop\PrestaShop\Adapter\Entity\Contact; use PrestaShop\PrestaShop\Core\Support\ContactRepositoryInterface; /** * Class ContactRepository is responsible for retrieving contact data from database. * * @internal */ final class ContactRepository implements ContactRepositoryInterface { /** * {@inheritdoc} */ public function findAllByLangId($langId) { return Contact::getContacts($langId); } }