- remove example scripts, as those can be extracted from tutorial.txt with extract.php
[m6w6/ext-http] / docs / examples / Cached_Responses.php
diff --git a/docs/examples/Cached_Responses.php b/docs/examples/Cached_Responses.php
deleted file mode 100644 (file)
index 8ac2bcf..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<?php
-HttpResponse::setCacheControl('public');
-HttpResponse::setCache(true);
-HttpResponse::capture();
-
-print "This will be cached until content changes!\n";
-print "Note that this approach will only save the clients download time.\n";
-?>