Linux host2.homegym.sg 4.18.0-553.8.1.el8_10.x86_64 #1 SMP Tue Jul 2 07:26:33 EDT 2024 x86_64
Apache
Server IP : 159.223.38.192 & Your IP : 159.223.38.192
Domains : 20 Domain
User : eachadea
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
home /
eachadea /
.trash /
InstagramMin.1 /
Api /
Delete
Unzip
Name
Size
Permission
Date
Action
Data
[ DIR ]
drwxr-xr-x
2025-02-20 07:22
IntsPostRepositoryInterface.php
1.58
KB
-rw-r--r--
2025-02-20 07:22
Save
Rename
<?php /** * Copyright © All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Olegnax\InstagramMin\Api; use Magento\Framework\Api\SearchCriteriaInterface; use Magento\Framework\Exception\LocalizedException; use Magento\Framework\Exception\NoSuchEntityException; use Olegnax\InstagramMin\Api\Data\IntsPostInterface; use Olegnax\InstagramMin\Api\Data\IntsPostSearchResultsInterface; interface IntsPostRepositoryInterface { /** * Save IntsPost * @param IntsPostInterface $intsPost * @return IntsPostInterface * @throws LocalizedException */ public function save( IntsPostInterface $intsPost ); /** * Retrieve IntsPost * @param string $intspostId * @return IntsPostInterface * @throws LocalizedException */ public function get($intspostId); /** * Retrieve IntsPost matching the specified criteria. * @param SearchCriteriaInterface $searchCriteria * @return IntsPostSearchResultsInterface * @throws LocalizedException */ public function getList( SearchCriteriaInterface $searchCriteria ); /** * Delete IntsPost * @param IntsPostInterface $intsPost * @return bool true on success * @throws LocalizedException */ public function delete( IntsPostInterface $intsPost ); /** * Delete IntsPost by ID * @param string $intspostId * @return bool true on success * @throws NoSuchEntityException * @throws LocalizedException */ public function deleteById($intspostId); }