Coding standards : doxygen + tab + single quote

This commit is contained in:
Denis Chenu 2017-04-26 17:26:13 +02:00
parent e354a75dc8
commit 20d4fbffef

View file

@ -7,23 +7,24 @@
/** /**
* Return at init * @brief Return default robots.txt when init
* @param App $a * @param App $a
* @return void * @return void
*/ */
function robots_txt_init(App $a) { function robots_txt_init(App $a)
{
/** @var string[] globally disallowed url */ /** @var string[] globally disallowed url */
$allDisalloweds = array( $allDisalloweds = array(
"/settings/", '/settings/',
"/admin/", '/admin/',
"/message/", '/message/',
); );
header("Content-Type: text/plain"); header('Content-Type: text/plain');
echo "User-agent: *\n"; echo 'User-agent: *'.PHP_EOL;
foreach ($allDisalloweds as $disallowed) { foreach ($allDisalloweds as $disallowed) {
echo "Disallow: {$disallowed}\n"; echo 'Disallow: '.$disallowed.PHP_EOL;
} }
killme(); killme();
} }