* @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Categories\Administrator\Table; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Category table * * @since 1.6 */ class CategoryTable extends \Joomla\CMS\Table\Category { /** * Method to delete a node and, optionally, its child nodes from the table. * * @param integer|null $pk The primary key of the node to delete. * @param boolean $children True to delete child nodes, false to move them up a level. * * @return boolean True on success. * * @since 2.5 */ public function delete($pk = null, $children = false) { return parent::delete($pk, $children); } }