From c9ea930faab7a008bcf00b257d92c21b418e37c9 Mon Sep 17 00:00:00 2001 From: Nathanael Esayeas Date: Mon, 10 May 2021 02:09:58 -0400 Subject: [PATCH] Remove file headers Signed-off-by: Nathanael Esayeas --- benchmarks/BenchAsset/AbstractFactoryFoo.php | 6 ------ benchmarks/BenchAsset/Bar.php | 6 ------ benchmarks/BenchAsset/Dependency.php | 6 ------ benchmarks/BenchAsset/FactoryFoo.php | 6 ------ benchmarks/BenchAsset/Foo.php | 6 ------ benchmarks/BenchAsset/ServiceDependingOnConfig.php | 6 ------ benchmarks/BenchAsset/ServiceWithDependency.php | 6 ------ benchmarks/FetchCachedServicesBench.php | 6 ------ benchmarks/FetchNewServiceManagerBench.php | 6 ------ ...chNewServiceUsingConfigAbstractFactoryAsFactoryBench.php | 6 ------ ...wServiceUsingReflectionAbstractFactoryAsFactoryBench.php | 6 ------ benchmarks/FetchNewServiceViaConfigAbstractFactoryBench.php | 6 ------ .../FetchNewServiceViaReflectionAbstractFactoryBench.php | 6 ------ benchmarks/FetchNewServicesBench.php | 6 ------ benchmarks/SetNewServicesBench.php | 6 ------ bin/generate-deps-for-config-factory | 6 ------ bin/generate-factory-for-class | 6 ------ src/AbstractFactory/ConfigAbstractFactory.php | 6 ------ src/AbstractFactory/ReflectionBasedAbstractFactory.php | 6 ------ src/AbstractFactoryInterface.php | 6 ------ src/AbstractPluginManager.php | 6 ------ src/Config.php | 6 ------ src/ConfigInterface.php | 6 ------ src/DelegatorFactoryInterface.php | 6 ------ src/Exception/ContainerModificationsNotAllowedException.php | 6 ------ src/Exception/CyclicAliasException.php | 6 ------ src/Exception/ExceptionInterface.php | 6 ------ src/Exception/InvalidArgumentException.php | 6 ------ src/Exception/InvalidServiceException.php | 6 ------ src/Exception/ServiceNotCreatedException.php | 6 ------ src/Exception/ServiceNotFoundException.php | 6 ------ src/Factory/AbstractFactoryInterface.php | 6 ------ src/Factory/DelegatorFactoryInterface.php | 6 ------ src/Factory/FactoryInterface.php | 6 ------ src/Factory/InvokableFactory.php | 6 ------ src/FactoryInterface.php | 6 ------ src/Initializer/InitializerInterface.php | 6 ------ src/InitializerInterface.php | 6 ------ src/PluginManagerInterface.php | 6 ------ src/Proxy/LazyServiceFactory.php | 6 ------ src/PsrContainerDecorator.php | 6 ------ src/ServiceLocatorInterface.php | 6 ------ src/ServiceManager.php | 6 ------ src/Test/CommonPluginManagerTrait.php | 6 ------ src/Tool/ConfigDumper.php | 6 ------ src/Tool/ConfigDumperCommand.php | 6 ------ src/Tool/FactoryCreator.php | 6 ------ src/Tool/FactoryCreatorCommand.php | 6 ------ test/AbstractFactory/ConfigAbstractFactoryTest.php | 6 ------ test/AbstractFactory/ReflectionBasedAbstractFactoryTest.php | 6 ------ .../TestAsset/ClassAcceptingConfigToConstructor.php | 6 ------ ...assAcceptingWellKnownServicesAsConstructorParameters.php | 6 ------ .../AbstractFactory/TestAsset/ClassWithEmptyConstructor.php | 6 ------ .../TestAsset/ClassWithMixedConstructorParameters.php | 6 ------ test/AbstractFactory/TestAsset/ClassWithNoConstructor.php | 6 ------ .../TestAsset/ClassWithPrivateConstructor.php | 6 ------ .../ClassWithScalarDependencyDefiningDefaultValue.php | 6 ------ .../AbstractFactory/TestAsset/ClassWithScalarParameters.php | 6 ------ .../TestAsset/ClassWithTypeHintedConstructorParameter.php | 6 ------ .../TestAsset/ClassWithTypehintedDefaultValue.php | 6 ------ test/AbstractFactory/TestAsset/SampleInterface.php | 6 ------ test/AbstractFactory/TestAsset/ValidatorPluginManager.php | 6 ------ test/AbstractPluginManagerTest.php | 6 ------ test/CommonServiceLocatorBehaviorsTrait.php | 6 ------ test/ConfigTest.php | 6 ------ test/ContainerTest.php | 6 ------ test/ExamplePluginManagerTest.php | 6 ------ test/Exception/CyclicAliasExceptionTest.php | 6 ------ test/Factory/InvokableFactoryTest.php | 6 ------ test/LazyServiceIntegrationTest.php | 6 ------ test/Proxy/LazyServiceFactoryTest.php | 6 ------ test/PsrContainerDecoratorTest.php | 6 ------ test/ServiceManagerTest.php | 6 ------ test/TestAsset/AbstractFactoryFoo.php | 6 ------ test/TestAsset/CallTimesAbstractFactory.php | 6 ------ test/TestAsset/ClassDependingOnAnInterface.php | 6 ------ test/TestAsset/ComplexDependencyObject.php | 6 ------ test/TestAsset/DoubleDependencyObject.php | 6 ------ test/TestAsset/ExceptionWithStringAsCode.php | 6 ------ test/TestAsset/ExtendedConfig.php | 6 ------ test/TestAsset/FactoryObject.php | 6 ------ test/TestAsset/FailingAbstractFactory.php | 6 ------ test/TestAsset/FailingExceptionWithStringAsCodeFactory.php | 6 ------ test/TestAsset/FailingFactory.php | 6 ------ test/TestAsset/Foo.php | 6 ------ test/TestAsset/InvokableObject.php | 6 ------ test/TestAsset/LenientPluginManager.php | 6 ------ test/TestAsset/NonAutoInvokablePluginManager.php | 6 ------ test/TestAsset/ObjectWithObjectScalarDependency.php | 6 ------ test/TestAsset/ObjectWithScalarDependency.php | 6 ------ test/TestAsset/PassthroughDelegatorFactory.php | 6 ------ test/TestAsset/PreDelegator.php | 6 ------ test/TestAsset/SampleFactory.php | 6 ------ test/TestAsset/SecondComplexDependencyObject.php | 6 ------ test/TestAsset/SimpleAbstractFactory.php | 6 ------ test/TestAsset/SimpleDependencyObject.php | 6 ------ test/TestAsset/SimpleInitializer.php | 6 ------ test/TestAsset/SimplePluginManager.php | 6 ------ test/TestAsset/SimpleServiceManager.php | 6 ------ test/TestAsset/V2ValidationPluginManager.php | 6 ------ test/TestAsset/V2v3PluginManager.php | 6 ------ test/TestAsset/config/invalid.config.php | 6 ------ test/TestAsset/config/test.config.php | 6 ------ test/Tool/ConfigDumperCommandTest.php | 6 ------ test/Tool/ConfigDumperTest.php | 6 ------ test/Tool/FactoryCreatorCommandTest.php | 6 ------ test/Tool/FactoryCreatorTest.php | 6 ------ 107 files changed, 642 deletions(-) diff --git a/benchmarks/BenchAsset/AbstractFactoryFoo.php b/benchmarks/BenchAsset/AbstractFactoryFoo.php index d54fe3e5..b7de6abf 100644 --- a/benchmarks/BenchAsset/AbstractFactoryFoo.php +++ b/benchmarks/BenchAsset/AbstractFactoryFoo.php @@ -1,11 +1,5 @@