Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions administrator/components/com_tags/src/Controller/TagController.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,22 +40,6 @@ protected function allowAdd($data = [])
return $this->app->getIdentity()->authorise('core.create', 'com_tags');
}

/**
* Method to check if you can edit a record.
*
* @param array $data An array of input data.
* @param string $key The name of the key for the primary key.
*
* @return boolean
*
* @since 3.1
*/
protected function allowEdit($data = [], $key = 'id')
{
// Since there is no asset tracking and no categories, revert to the component permissions.
return parent::allowEdit($data, $key);
}

/**
* Method to run batch operations.
*
Expand Down
13 changes: 0 additions & 13 deletions libraries/src/Component/Exception/MissingComponentException.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,4 @@
*/
class MissingComponentException extends RouteNotFoundException
{
/**
* Constructor
*
* @param string $message The Exception message to throw.
* @param integer $code The Exception code.
* @param \Exception $previous The previous exception used for the exception chaining.
*
* @since 3.7.0
*/
public function __construct($message = '', $code = 404, \Exception $previous = null)
{
parent::__construct($message, $code, $previous);
}
}
14 changes: 0 additions & 14 deletions libraries/src/Toolbar/Button/DropdownButton.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,20 +84,6 @@ protected function prepareOptions(array &$options)
}
}

/**
* Render button HTML.
*
* @param array $options The button options.
*
* @return string The button HTML.
*
* @since 4.0.0
*/
protected function renderButton(array &$options): string
{
return parent::renderButton($options);
}

/**
* Get the button CSS Id.
*
Expand Down