Browse Source

Add file header docblocks.

Justin Hileman 13 years ago
parent
commit
eed4400afb
34 changed files with 306 additions and 0 deletions
  1. 9 0
      src/Mustache/Autoloader.php
  2. 9 0
      src/Mustache/Buffer.php
  3. 9 0
      src/Mustache/Compiler.php
  4. 9 0
      src/Mustache/Context.php
  5. 9 0
      src/Mustache/Loader.php
  6. 9 0
      src/Mustache/Loader/ArrayLoader.php
  7. 9 0
      src/Mustache/Loader/FilesystemLoader.php
  8. 9 0
      src/Mustache/Loader/MutableLoader.php
  9. 9 0
      src/Mustache/Loader/StringLoader.php
  10. 9 0
      src/Mustache/Mustache.php
  11. 9 0
      src/Mustache/Parser.php
  12. 9 0
      src/Mustache/Template.php
  13. 9 0
      src/Mustache/Tokenizer.php
  14. 9 0
      test/Mustache/Test/AutoloaderTest.php
  15. 9 0
      test/Mustache/Test/BufferTest.php
  16. 9 0
      test/Mustache/Test/CompilerTest.php
  17. 9 0
      test/Mustache/Test/ContextTest.php
  18. 9 0
      test/Mustache/Test/Functional/CallTest.php
  19. 9 0
      test/Mustache/Test/Functional/ExamplesTest.php
  20. 9 0
      test/Mustache/Test/Functional/HigherOrderSectionsTest.php
  21. 9 0
      test/Mustache/Test/Functional/MustacheInjectionTest.php
  22. 9 0
      test/Mustache/Test/Functional/MustacheSpecTest.php
  23. 9 0
      test/Mustache/Test/Functional/ObjectSectionTest.php
  24. 9 0
      test/Mustache/Test/Loader/ArrayLoaderTest.php
  25. 9 0
      test/Mustache/Test/Loader/FilesystemLoaderTest.php
  26. 9 0
      test/Mustache/Test/Loader/StringLoaderTest.php
  27. 9 0
      test/Mustache/Test/MustacheTest.php
  28. 9 0
      test/Mustache/Test/ParserTest.php
  29. 9 0
      test/Mustache/Test/TemplateTest.php
  30. 9 0
      test/Mustache/Test/TokenizerTest.php
  31. 9 0
      test/bootstrap.php
  32. 9 0
      test/fixtures/autoloader/Mustache/Bar.php
  33. 9 0
      test/fixtures/autoloader/Mustache/Foo.php
  34. 9 0
      test/fixtures/autoloader/NonMustacheClass.php

+ 9 - 0
src/Mustache/Autoloader.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache;
 
 /**

+ 9 - 0
src/Mustache/Buffer.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache;
 
 /**

+ 9 - 0
src/Mustache/Compiler.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache;
 
 /**

+ 9 - 0
src/Mustache/Context.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache;
 
 /**

+ 9 - 0
src/Mustache/Loader.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache;
 
 /**

+ 9 - 0
src/Mustache/Loader/ArrayLoader.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Loader;
 
 use Mustache\Loader;

+ 9 - 0
src/Mustache/Loader/FilesystemLoader.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Loader;
 
 use Mustache\Loader;

+ 9 - 0
src/Mustache/Loader/MutableLoader.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Loader;
 
 /**

+ 9 - 0
src/Mustache/Loader/StringLoader.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Loader;
 
 use Mustache\Loader;

+ 9 - 0
src/Mustache/Mustache.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache;
 
 use Mustache\Loader\ArrayLoader;

+ 9 - 0
src/Mustache/Parser.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache;
 
 /**

+ 9 - 0
src/Mustache/Template.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache;
 
 /**

+ 9 - 0
src/Mustache/Tokenizer.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache;
 
 /**

+ 9 - 0
test/Mustache/Test/AutoloaderTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test;
 
 use Mustache\Autoloader;

+ 9 - 0
test/Mustache/Test/BufferTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test;
 
 use Mustache\Mustache;

+ 9 - 0
test/Mustache/Test/CompilerTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test;
 
 use Mustache\Compiler;

+ 9 - 0
test/Mustache/Test/ContextTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test;
 
 use Mustache\Context;

+ 9 - 0
test/Mustache/Test/Functional/CallTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test\Functional;
 
 use Mustache\Mustache;

+ 9 - 0
test/Mustache/Test/Functional/ExamplesTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test\Functional;
 
 use Mustache\Mustache;

+ 9 - 0
test/Mustache/Test/Functional/HigherOrderSectionsTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test\Functional;
 
 use Mustache\Mustache;

+ 9 - 0
test/Mustache/Test/Functional/MustacheInjectionTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test\Functional;
 
 use Mustache\Mustache;

+ 9 - 0
test/Mustache/Test/Functional/MustacheSpecTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test\Functional;
 
 use Mustache\Mustache;

+ 9 - 0
test/Mustache/Test/Functional/ObjectSectionTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test\Functional;
 
 use Mustache\Mustache;

+ 9 - 0
test/Mustache/Test/Loader/ArrayLoaderTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test\Loader;
 
 use Mustache\Loader\ArrayLoader;

+ 9 - 0
test/Mustache/Test/Loader/FilesystemLoaderTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test\Loader;
 
 use Mustache\Loader\FilesystemLoader;

+ 9 - 0
test/Mustache/Test/Loader/StringLoaderTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test\Loader;
 
 use Mustache\Loader\StringLoader;

+ 9 - 0
test/Mustache/Test/MustacheTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test;
 
 use Mustache\Compiler;

+ 9 - 0
test/Mustache/Test/ParserTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test;
 
 use Mustache\Parser;

+ 9 - 0
test/Mustache/Test/TemplateTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test;
 
 use Mustache\Context;

+ 9 - 0
test/Mustache/Test/TokenizerTest.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache\Test;
 
 use Mustache\Tokenizer;

+ 9 - 0
test/bootstrap.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 require __DIR__.'/../src/Mustache/Autoloader.php';
 \Mustache\Autoloader::register();
 

+ 9 - 0
test/fixtures/autoloader/Mustache/Bar.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache;
 
 class Bar {

+ 9 - 0
test/fixtures/autoloader/Mustache/Foo.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 namespace Mustache;
 
 class Foo {

+ 9 - 0
test/fixtures/autoloader/NonMustacheClass.php

@@ -1,5 +1,14 @@
 <?php
 
+/*
+ * This file is part of Mustache.php.
+ *
+ * (c) 2012 Justin Hileman
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
 class NonMustacheClass {
 	// noop
 }