Explorar o código

Remove all the extra spaces StyleCI wanted me to add :)

Justin Hileman %!s(int64=9) %!d(string=hai) anos
pai
achega
18a2adce3d
Modificáronse 71 ficheiros con 0 adicións e 71 borrados
  1. 0 1
      src/Mustache/Autoloader.php
  2. 0 1
      src/Mustache/Cache.php
  3. 0 1
      src/Mustache/Cache/AbstractCache.php
  4. 0 1
      src/Mustache/Cache/FilesystemCache.php
  5. 0 1
      src/Mustache/Cache/NoopCache.php
  6. 0 1
      src/Mustache/Compiler.php
  7. 0 1
      src/Mustache/Context.php
  8. 0 1
      src/Mustache/Engine.php
  9. 0 1
      src/Mustache/Exception.php
  10. 0 1
      src/Mustache/Exception/InvalidArgumentException.php
  11. 0 1
      src/Mustache/Exception/LogicException.php
  12. 0 1
      src/Mustache/Exception/RuntimeException.php
  13. 0 1
      src/Mustache/Exception/SyntaxException.php
  14. 0 1
      src/Mustache/Exception/UnknownFilterException.php
  15. 0 1
      src/Mustache/Exception/UnknownHelperException.php
  16. 0 1
      src/Mustache/Exception/UnknownTemplateException.php
  17. 0 1
      src/Mustache/HelperCollection.php
  18. 0 1
      src/Mustache/LambdaHelper.php
  19. 0 1
      src/Mustache/Loader.php
  20. 0 1
      src/Mustache/Loader/ArrayLoader.php
  21. 0 1
      src/Mustache/Loader/CascadingLoader.php
  22. 0 1
      src/Mustache/Loader/FilesystemLoader.php
  23. 0 1
      src/Mustache/Loader/InlineLoader.php
  24. 0 1
      src/Mustache/Loader/MutableLoader.php
  25. 0 1
      src/Mustache/Loader/StringLoader.php
  26. 0 1
      src/Mustache/Logger.php
  27. 0 1
      src/Mustache/Logger/AbstractLogger.php
  28. 0 1
      src/Mustache/Logger/StreamLogger.php
  29. 0 1
      src/Mustache/Parser.php
  30. 0 1
      src/Mustache/Template.php
  31. 0 1
      src/Mustache/Tokenizer.php
  32. 0 1
      test/Mustache/Test/AutoloaderTest.php
  33. 0 1
      test/Mustache/Test/Cache/AbstractCacheTest.php
  34. 0 1
      test/Mustache/Test/Cache/FilesystemCacheTest.php
  35. 0 1
      test/Mustache/Test/CompilerTest.php
  36. 0 1
      test/Mustache/Test/ContextTest.php
  37. 0 1
      test/Mustache/Test/EngineTest.php
  38. 0 1
      test/Mustache/Test/Exception/SyntaxExceptionTest.php
  39. 0 1
      test/Mustache/Test/Exception/UnknownFilterExceptionTest.php
  40. 0 1
      test/Mustache/Test/Exception/UnknownHelperExceptionTest.php
  41. 0 1
      test/Mustache/Test/Exception/UnknownTemplateExceptionTest.php
  42. 0 1
      test/Mustache/Test/FiveThree/Functional/ClosureQuirksTest.php
  43. 0 1
      test/Mustache/Test/FiveThree/Functional/EngineTest.php
  44. 0 1
      test/Mustache/Test/FiveThree/Functional/FiltersTest.php
  45. 0 1
      test/Mustache/Test/FiveThree/Functional/HigherOrderSectionsTest.php
  46. 0 1
      test/Mustache/Test/FiveThree/Functional/LambdaHelperTest.php
  47. 0 1
      test/Mustache/Test/FiveThree/Functional/MustacheSpecTest.php
  48. 0 1
      test/Mustache/Test/FiveThree/Functional/PartialLambdaIndentTest.php
  49. 0 1
      test/Mustache/Test/FiveThree/Functional/StrictCallablesTest.php
  50. 0 1
      test/Mustache/Test/Functional/CallTest.php
  51. 0 1
      test/Mustache/Test/Functional/ExamplesTest.php
  52. 0 1
      test/Mustache/Test/Functional/HigherOrderSectionsTest.php
  53. 0 1
      test/Mustache/Test/Functional/MustacheInjectionTest.php
  54. 0 1
      test/Mustache/Test/Functional/MustacheSpecTest.php
  55. 0 1
      test/Mustache/Test/Functional/NestedPartialIndentTest.php
  56. 0 1
      test/Mustache/Test/Functional/ObjectSectionTest.php
  57. 0 1
      test/Mustache/Test/FunctionalTestCase.php
  58. 0 1
      test/Mustache/Test/HelperCollectionTest.php
  59. 0 1
      test/Mustache/Test/Loader/ArrayLoaderTest.php
  60. 0 1
      test/Mustache/Test/Loader/CascadingLoaderTest.php
  61. 0 1
      test/Mustache/Test/Loader/FilesystemLoaderTest.php
  62. 0 1
      test/Mustache/Test/Loader/StringLoaderTest.php
  63. 0 1
      test/Mustache/Test/Logger/AbstractLoggerTest.php
  64. 0 1
      test/Mustache/Test/Logger/StreamLoggerTest.php
  65. 0 1
      test/Mustache/Test/ParserTest.php
  66. 0 1
      test/Mustache/Test/SpecTestCase.php
  67. 0 1
      test/Mustache/Test/TemplateTest.php
  68. 0 1
      test/Mustache/Test/TokenizerTest.php
  69. 0 1
      test/fixtures/autoloader/Mustache/Bar.php
  70. 0 1
      test/fixtures/autoloader/Mustache/Foo.php
  71. 0 1
      test/fixtures/autoloader/NonMustacheClass.php

+ 0 - 1
src/Mustache/Autoloader.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache class autoloader.
  */

+ 0 - 1
src/Mustache/Cache.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Cache interface.
  *

+ 0 - 1
src/Mustache/Cache/AbstractCache.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Abstract Mustache Cache class.
  *

+ 0 - 1
src/Mustache/Cache/FilesystemCache.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Cache filesystem implementation.
  *

+ 0 - 1
src/Mustache/Cache/NoopCache.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Cache in-memory implementation.
  *

+ 0 - 1
src/Mustache/Compiler.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Compiler class.
  *

+ 0 - 1
src/Mustache/Context.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Template rendering Context.
  */

+ 0 - 1
src/Mustache/Engine.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * A Mustache implementation in PHP.
  *

+ 0 - 1
src/Mustache/Exception.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * A Mustache Exception interface.
  */

+ 0 - 1
src/Mustache/Exception/InvalidArgumentException.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Invalid argument exception.
  */

+ 0 - 1
src/Mustache/Exception/LogicException.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Logic exception.
  */

+ 0 - 1
src/Mustache/Exception/RuntimeException.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Runtime exception.
  */

+ 0 - 1
src/Mustache/Exception/SyntaxException.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache syntax exception.
  */

+ 0 - 1
src/Mustache/Exception/UnknownFilterException.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Unknown filter exception.
  */

+ 0 - 1
src/Mustache/Exception/UnknownHelperException.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Unknown helper exception.
  */

+ 0 - 1
src/Mustache/Exception/UnknownTemplateException.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Unknown template exception.
  */

+ 0 - 1
src/Mustache/HelperCollection.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * A collection of helpers for a Mustache instance.
  */

+ 0 - 1
src/Mustache/LambdaHelper.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Lambda Helper.
  *

+ 0 - 1
src/Mustache/Loader.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Template Loader interface.
  */

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Template array Loader implementation.
  *

+ 0 - 1
src/Mustache/Loader/CascadingLoader.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * A Mustache Template cascading loader implementation, which delegates to other
  * Loader instances.

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Template filesystem Loader implementation.
  *

+ 0 - 1
src/Mustache/Loader/InlineLoader.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * A Mustache Template loader for inline templates.
  *

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Template mutable Loader interface.
  */

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Template string Loader implementation.
  *

+ 0 - 1
src/Mustache/Logger.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Describes a Mustache logger instance.
  *

+ 0 - 1
src/Mustache/Logger/AbstractLogger.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * This is a simple Logger implementation that other Loggers can inherit from.
  *

+ 0 - 1
src/Mustache/Logger/StreamLogger.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * A Mustache Stream Logger.
  *

+ 0 - 1
src/Mustache/Parser.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Parser class.
  *

+ 0 - 1
src/Mustache/Template.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Abstract Mustache Template class.
  *

+ 0 - 1
src/Mustache/Tokenizer.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * Mustache Tokenizer class.
  *

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

+ 0 - 1
test/Mustache/Test/Cache/AbstractCacheTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 class Mustache_Test_Cache_AbstractCacheTest extends PHPUnit_Framework_TestCase
 {
     public function testGetSetLogger()

+ 0 - 1
test/Mustache/Test/Cache/FilesystemCacheTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group functional
  */

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

+ 0 - 1
test/Mustache/Test/EngineTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

+ 0 - 1
test/Mustache/Test/Exception/SyntaxExceptionTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 class Mustache_Test_Exception_SyntaxExceptionTest extends PHPUnit_Framework_TestCase
 {
     public function testInstance()

+ 0 - 1
test/Mustache/Test/Exception/UnknownFilterExceptionTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 class Mustache_Test_Exception_UnknownFilterExceptionTest extends PHPUnit_Framework_TestCase
 {
     public function testInstance()

+ 0 - 1
test/Mustache/Test/Exception/UnknownHelperExceptionTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 class Mustache_Test_Exception_UnknownHelperExceptionTest extends PHPUnit_Framework_TestCase
 {
     public function testInstance()

+ 0 - 1
test/Mustache/Test/Exception/UnknownTemplateExceptionTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 class Mustache_Test_Exception_UnknownTemplateExceptionTest extends PHPUnit_Framework_TestCase
 {
     public function testInstance()

+ 0 - 1
test/Mustache/Test/FiveThree/Functional/ClosureQuirksTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group lambdas
  * @group functional

+ 0 - 1
test/Mustache/Test/FiveThree/Functional/EngineTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group pragmas
  * @group functional

+ 0 - 1
test/Mustache/Test/FiveThree/Functional/FiltersTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group filters
  * @group functional

+ 0 - 1
test/Mustache/Test/FiveThree/Functional/HigherOrderSectionsTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group lambdas
  * @group functional

+ 0 - 1
test/Mustache/Test/FiveThree/Functional/LambdaHelperTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group lambdas
  * @group functional

+ 0 - 1
test/Mustache/Test/FiveThree/Functional/MustacheSpecTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * A PHPUnit test case wrapping the Mustache Spec.
  *

+ 0 - 1
test/Mustache/Test/FiveThree/Functional/PartialLambdaIndentTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group lambdas
  * @group functional

+ 0 - 1
test/Mustache/Test/FiveThree/Functional/StrictCallablesTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group lambdas
  * @group functional

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group magic_methods
  * @group functional

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group examples
  * @group functional

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group lambdas
  * @group functional

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group mustache_injection
  * @group functional

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * A PHPUnit test case wrapping the Mustache Spec.
  *

+ 0 - 1
test/Mustache/Test/Functional/NestedPartialIndentTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group functional
  * @group partials

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group sections
  * @group functional

+ 0 - 1
test/Mustache/Test/FunctionalTestCase.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 abstract class Mustache_Test_FunctionalTestCase extends PHPUnit_Framework_TestCase
 {
     protected static $tempDir;

+ 0 - 1
test/Mustache/Test/HelperCollectionTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 class Mustache_Test_HelperCollectionTest extends PHPUnit_Framework_TestCase
 {
     public function testConstructor()

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

+ 0 - 1
test/Mustache/Test/Loader/CascadingLoaderTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

+ 0 - 1
test/Mustache/Test/Logger/AbstractLoggerTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

+ 0 - 1
test/Mustache/Test/Logger/StreamLoggerTest.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

+ 0 - 1
test/Mustache/Test/SpecTestCase.php

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 abstract class Mustache_Test_SpecTestCase extends PHPUnit_Framework_TestCase
 {
     protected static $mustache;

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 /**
  * @group unit
  */

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 class Mustache_Bar
 {
     // nada

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 class Mustache_Foo
 {
     // nada

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

@@ -9,7 +9,6 @@
  * file that was distributed with this source code.
  */
 
-
 class NonMustacheClass
 {
     // noop