Skip to content
Snippets Groups Projects
Commit ecce2783 authored by catch's avatar catch
Browse files

Issue #2085957 by tankerjoe: Document that BookController methods return...

Issue #2085957 by tankerjoe: Document that BookController methods return render arrays, not strings.
parent 3a7bfeac
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -61,8 +61,8 @@ public static function create(ContainerInterface $container) {
/**
* Returns an administrative overview of all books.
*
* @return string
* A HTML-formatted string with the administrative page content.
* @return array
* A render array representing the administrative page content.
*
*/
public function adminOverview() {
......@@ -98,8 +98,8 @@ public function adminOverview() {
/**
* Prints a listing of all books.
*
* @return string
* A HTML-formatted string with the listing of all books content.
* @return array
* A render array representing the listing of all books content.
*/
public function bookRender() {
$book_list = array();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment