![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-catalog/Api/ |
<?php /** * * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Api; /** * @api * @since 100.0.2 */ interface CategoryManagementInterface { /** * Retrieve list of categories * * @param int $rootCategoryId * @param int $depth * @throws \Magento\Framework\Exception\NoSuchEntityException If ID is not found * @return \Magento\Catalog\Api\Data\CategoryTreeInterface containing Tree objects */ public function getTree($rootCategoryId = null, $depth = null); /** * Move category * * @param int $categoryId * @param int $parentId * @param int $afterId * @return bool * @throws \Magento\Framework\Exception\LocalizedException * @throws \Magento\Framework\Exception\NoSuchEntityException */ public function move($categoryId, $parentId, $afterId = null); /** * Provide the number of category count * * @return int */ public function getCount(); }