forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MDL-83751 check: remove non-functional result class method.
- Loading branch information
1 parent
ce0193f
commit ec454be
Showing
1 changed file
with
2 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,25 +14,17 @@ | |
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* A check result class | ||
* | ||
* @package core | ||
* @category check | ||
* @copyright 2020 Brendan Heywood <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
namespace core\check; | ||
|
||
defined('MOODLE_INTERNAL') || die(); | ||
|
||
/** | ||
* A check object returns a result object | ||
* | ||
* Most checks can use this an instance of this directly but if you have a | ||
* 'details' which is computationally expensive then extend this and overide | ||
* the get_details() method so that it is only called when it will be needed. | ||
* | ||
* @package core | ||
* @category check | ||
* @copyright 2020 Brendan Heywood <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
@@ -109,20 +101,6 @@ class result implements \renderable { | |
*/ | ||
protected $details = ''; | ||
|
||
/** | ||
* Get the check reference label | ||
* | ||
* @return string must be globally unique | ||
*/ | ||
public function get_ref(): string { | ||
$ref = $this->get_component(); | ||
if (!empty($ref)) { | ||
$ref .= '_'; | ||
} | ||
$ref .= $this->get_id(); | ||
return $ref; | ||
} | ||
|
||
/** | ||
* Constructor | ||
* | ||
|