From a4cf0d9483259084518e5f07fcdfc6273ea57d78 Mon Sep 17 00:00:00 2001 From: Tyler Sommer Date: Mon, 10 Feb 2014 15:55:26 -0800 Subject: [PATCH] Added LICENSE --- Command/CreateUserCommand.php | 9 +++++++++ Command/Worker/ExecuteCommand.php | 9 +++++++++ Command/Worker/ListCommand.php | 9 +++++++++ Controller/Auth/PasswordResetController.php | 9 +++++++++ Controller/AuthController.php | 9 +++++++++ Controller/Controller.php | 9 +++++++++ Controller/FileController.php | 9 +++++++++ Controller/GroupController.php | 9 +++++++++ Controller/ProfileController.php | 9 +++++++++ Controller/UserController.php | 9 +++++++++ DataFixtures/ORM/CountryAndRegionData.php | 9 +++++++++ DataFixtures/ORM/GroupData.php | 9 +++++++++ DataFixtures/ORM/InitialUserData.php | 9 +++++++++ .../Compiler/RegisterFormTypesPass.php | 9 +++++++++ .../Compiler/RegisterWorkersPass.php | 9 +++++++++ DependencyInjection/Configuration.php | 9 +++++++++ .../OrkestraApplicationExtension.php | 9 +++++++++ Entity/Contact/Address.php | 9 +++++++++ Entity/Contact/Country.php | 9 +++++++++ Entity/Contact/Region.php | 9 +++++++++ Entity/EmailTemplate.php | 9 +++++++++ Entity/File.php | 9 +++++++++ Entity/Group.php | 9 +++++++++ Entity/Preferences.php | 9 +++++++++ Entity/User.php | 9 +++++++++ Form/ChangePasswordType.php | 9 +++++++++ Form/Contact/AddressType.php | 9 +++++++++ Form/Contact/RegionType.php | 9 +++++++++ Form/DataTransformer/EnumTransformer.php | 9 +++++++++ Form/DateTimeType.php | 9 +++++++++ Form/EntityChoice/ArbitrarySetLoader.php | 9 +++++++++ Form/EntityChoiceType.php | 9 +++++++++ Form/EnumType.php | 9 +++++++++ Form/GroupType.php | 9 +++++++++ Form/PhoneType.php | 9 +++++++++ Form/PreferencesType.php | 9 +++++++++ Form/ProfileType.php | 9 +++++++++ Form/UserType.php | 9 +++++++++ Form/YearType.php | 9 +++++++++ Helper/FormHelper.php | 9 +++++++++ Helper/MailHelper.php | 9 +++++++++ LICENSE | 19 +++++++++++++++++++ Listener/UserPreferencesListener.php | 9 +++++++++ Manager/FileManager.php | 9 +++++++++ Model/Contact/AddressInterface.php | 9 +++++++++ Model/Contact/CountryInterface.php | 9 +++++++++ Model/Contact/RegionInterface.php | 9 +++++++++ Model/GroupInterface.php | 9 +++++++++ Model/PersistentModelInterface.php | 9 +++++++++ Model/PreferencesInterface.php | 9 +++++++++ Model/UserInterface.php | 9 +++++++++ OrkestraApplicationBundle.php | 9 +++++++++ Repository/UserRepository.php | 9 +++++++++ Subscriber/LatitudeLongitudeSubscriber.php | 9 +++++++++ Twig/OrkestraExtension.php | 9 +++++++++ Worker/LatitudeLongitudeWorker.php | 9 +++++++++ Worker/WorkerFactory.php | 9 +++++++++ Worker/WorkerFactoryInterface.php | 9 +++++++++ Worker/WorkerInterface.php | 9 +++++++++ 59 files changed, 541 insertions(+) create mode 100644 LICENSE diff --git a/Command/CreateUserCommand.php b/Command/CreateUserCommand.php index b6d9de3..7252644 100644 --- a/Command/CreateUserCommand.php +++ b/Command/CreateUserCommand.php @@ -1,5 +1,14 @@