* @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); } }