Commiting the big week of work. This commit includes some basic entites and a basic...
authorCameron Ball <c.ball1729@gmail.com>
Sun, 31 Aug 2014 11:58:10 +0000 (19:58 +0800)
committerCameron Ball <c.ball1729@gmail.com>
Sun, 31 Aug 2014 11:58:10 +0000 (19:58 +0800)
commit31c5574fd8c1164a5d6695b15c6f8236f2e6b8cb
tree9479a97578d8e0a3bb0233f768f77d26d9baa32e
parentc538d26b8af73c13cc584cb1fb3a5f72b0493380
Commiting the big week of work. This commit includes some basic entites and a basic data mapping framework to load/save said entites from the database.
57 files changed:
.gitignore
DataAccess/DataMapper/DataMapper.php [new file with mode: 0644]
DataAccess/DataMapper/Helpers/AbstractPopulationHelper.php [new file with mode: 0644]
DataAccess/DataMapper/Helpers/EntityMapsHelper.php [new file with mode: 0644]
DataAccess/DataMapper/Helpers/IntMapsHelper.php [new file with mode: 0644]
DataAccess/DataMapper/Helpers/VOArrayMapsHelper.php [new file with mode: 0644]
DataAccess/DataMapper/Helpers/VOMapsHelper.php [new file with mode: 0644]
DataAccess/DataMapper/Helpers/VarcharMapsHelper.php [new file with mode: 0644]
DataAccess/DataMapper/IDataMapper.php [new file with mode: 0644]
DataAccess/StepMania/ISimfileRepository.php [new file with mode: 0644]
DataAccess/functions.php [new file with mode: 0644]
Domain/ConstantsAndTypes/SimfileConstants.php [new file with mode: 0644]
Domain/Entities/AbstractEntity.php [new file with mode: 0644]
Domain/Entities/IDivineEntity.php [new file with mode: 0644]
Domain/Entities/IUser.php [new file with mode: 0644]
Domain/Entities/IUserBuilder.php [new file with mode: 0644]
Domain/Entities/StepMania/ISimfile.php [new file with mode: 0644]
Domain/Entities/StepMania/ISimfileBuilder.php [new file with mode: 0644]
Domain/Entities/StepMania/Simfile.php [new file with mode: 0644]
Domain/Entities/StepMania/SimfileBuilder.php [new file with mode: 0644]
Domain/Entities/StepMania/SimfileFactory.php [new file with mode: 0644]
Domain/Entities/StepMania/SimfileStepByStepBuilder.php [new file with mode: 0644]
Domain/Entities/User.php [new file with mode: 0644]
Domain/Entities/UserBuilder.php [new file with mode: 0644]
Domain/Entities/UserFactory.php [new file with mode: 0644]
Domain/Entities/UserStepByStepBuilder.php [new file with mode: 0644]
Domain/Exception/InvalidCountryException.php [new file with mode: 0644]
Domain/Exception/InvalidDanceModeException.php [new file with mode: 0644]
Domain/Exception/InvalidDifficultyException.php [new file with mode: 0644]
Domain/Exception/InvalidStepChartException.php [new file with mode: 0644]
Domain/VOs/Country.php [new file with mode: 0644]
Domain/VOs/ICountry.php [new file with mode: 0644]
Domain/VOs/IName.php [new file with mode: 0644]
Domain/VOs/Name.php [new file with mode: 0644]
Domain/VOs/StepMania/Artist.php [new file with mode: 0644]
Domain/VOs/StepMania/BPM.php [new file with mode: 0644]
Domain/VOs/StepMania/DanceMode.php [new file with mode: 0644]
Domain/VOs/StepMania/Difficulty.php [new file with mode: 0644]
Domain/VOs/StepMania/IArtist.php [new file with mode: 0644]
Domain/VOs/StepMania/IBPM.php [new file with mode: 0644]
Domain/VOs/StepMania/IDanceMode.php [new file with mode: 0644]
Domain/VOs/StepMania/IDifficulty.php [new file with mode: 0644]
Domain/VOs/StepMania/IStepArtist.php [new file with mode: 0644]
Domain/VOs/StepMania/IStepChart.php [new file with mode: 0644]
Domain/VOs/StepMania/ITag.php [new file with mode: 0644]
Domain/VOs/StepMania/StepArtist.php [new file with mode: 0644]
Domain/VOs/StepMania/StepChart.php [new file with mode: 0644]
Domain/VOs/StepMania/Tag.php [new file with mode: 0644]
README.md
Services/Bar.php [new file with mode: 0644]
Services/BarInterface.php [new file with mode: 0644]
Services/Foo.php [new file with mode: 0644]
composer.json [new file with mode: 0644]
config/DI.php [new file with mode: 0644]
config/DataMaps.php [new file with mode: 0644]
divinelegy.sql [new file with mode: 0644]
public_html/index.php [new file with mode: 0644]