-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Standardise PHPDoc in classes/local/hook/output/before_standard_head_…
…html_generation.php
- Loading branch information
Showing
1 changed file
with
9 additions
and
1 deletion.
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,10 +14,18 @@ | |
// You should have received a copy of the GNU General Public License | ||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* Theme Boost Union - Hook: Allows plugins to add any elements to the page <head> html tag. | ||
* | ||
* @package theme_boost_union | ||
* @copyright 2024 Alexander Bias <[email protected]> | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | ||
*/ | ||
|
||
namespace theme_boost_union\local\hook\output; | ||
|
||
/** | ||
* Theme Boost Union - Hook: Allows plugins to add any elements to the page <head> html tag. | ||
* Hook to allow plugins to add any elements to the page <head> html tag. | ||
* | ||
* @package theme_boost_union | ||
* @copyright 2024 Alexander Bias <[email protected]> | ||
|