]> git.mxchange.org Git - friendica.git/blobdiff - mod/robots_txt.php
Docs: add a note on adding `use` on theme.php
[friendica.git] / mod / robots_txt.php
index d150ff3de6741d3e97ca7b84d89ebc893eda70a1..29f520b18cdce9252d235461b66b168afce506d0 100644 (file)
@@ -1,10 +1,12 @@
 <?php
+
 /**
  * @file mod/robots_text.php
  * @brief Module which returns the default robots.txt
  * @version 0.1.2
  */
 
+use Friendica\App;
 
 /**
  * @brief Return default robots.txt when init
  */
 function robots_txt_init(App $a)
 {
-
-       $allDisalloweds = array(
+       $allDisalloweds = [
                '/settings/',
                '/admin/',
                '/message/',
-       );
+       ];
 
        header('Content-Type: text/plain');
-       echo 'User-agent: *'.PHP_EOL;
+       echo 'User-agent: *' . PHP_EOL;
        foreach ($allDisalloweds as $disallowed) {
-               echo 'Disallow: '.$disallowed.PHP_EOL;
+               echo 'Disallow: ' . $disallowed . PHP_EOL;
        }
        killme();
 }