From 20d4fbffefb1cdc53fde912f8ed9daedf040f1ce Mon Sep 17 00:00:00 2001 From: Denis Chenu Date: Wed, 26 Apr 2017 17:26:13 +0200 Subject: [PATCH] Coding standards : doxygen + tab + single quote --- mod/robots_txt.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/mod/robots_txt.php b/mod/robots_txt.php index c0705dec6..eaab44662 100644 --- a/mod/robots_txt.php +++ b/mod/robots_txt.php @@ -7,23 +7,24 @@ /** - * Return at init + * @brief Return default robots.txt when init * @param App $a * @return void */ -function robots_txt_init(App $a) { +function robots_txt_init(App $a) +{ /** @var string[] globally disallowed url */ $allDisalloweds = array( - "/settings/", - "/admin/", - "/message/", + '/settings/', + '/admin/', + '/message/', ); - header("Content-Type: text/plain"); - echo "User-agent: *\n"; - foreach($allDisalloweds as $disallowed) { - echo "Disallow: {$disallowed}\n"; + header('Content-Type: text/plain'); + echo 'User-agent: *'.PHP_EOL; + foreach ($allDisalloweds as $disallowed) { + echo 'Disallow: '.$disallowed.PHP_EOL; } killme(); }