FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
unimapper/src/loader.php at develop · unimapper/unimapper · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
unimapper
/
unimapper
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
10
Code
Issues
43
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
unimapper
/
src
/
loader.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
64 lines (62 loc) · 3.04 KB
Breadcrumbs
unimapper
/
src
/
loader.php
Copy path
File metadata and controls
64 lines (62 loc) · 3.04 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
if
(
version_compare
(
phpversion
(),
'
5.4.0
'
,
'
<
'
)) {
throw
new
Exception
(
'
UniMapper requires PHP 5.4.0 or newer!
'
);
}
require_once
__DIR__
.
'
/Adapter.php
'
;
require_once
__DIR__
.
'
/Association.php
'
;
require_once
__DIR__
.
'
/Connection.php
'
;
require_once
__DIR__
.
'
/Convention.php
'
;
require_once
__DIR__
.
'
/Entity.php
'
;
require_once
__DIR__
.
'
/Entity/Collection.php
'
;
require_once
__DIR__
.
'
/Entity/Filter.php
'
;
require_once
__DIR__
.
'
/Entity/Reflection.php
'
;
require_once
__DIR__
.
'
/Entity/Reflection/Annotation.php
'
;
require_once
__DIR__
.
'
/Entity/Reflection/Property.php
'
;
require_once
__DIR__
.
'
/Entity/Reflection/Property/IOption.php
'
;
require_once
__DIR__
.
'
/Entity/Reflection/Property/Option/Assoc.php
'
;
require_once
__DIR__
.
'
/Entity/Reflection/Property/Option/Computed.php
'
;
require_once
__DIR__
.
'
/Entity/Reflection/Property/Option/Enum.php
'
;
require_once
__DIR__
.
'
/Entity/Reflection/Property/Option/Map.php
'
;
require_once
__DIR__
.
'
/Entity/Reflection/Property/Option/Primary.php
'
;
require_once
__DIR__
.
'
/Exception.php
'
;
require_once
__DIR__
.
'
/Mapper.php
'
;
require_once
__DIR__
.
'
/Query.php
'
;
require_once
__DIR__
.
'
/QueryBuilder.php
'
;
require_once
__DIR__
.
'
/Repository.php
'
;
require_once
__DIR__
.
'
/Validator.php
'
;
require_once
__DIR__
.
'
/Adapter/IAdapter.php
'
;
require_once
__DIR__
.
'
/Adapter/IConvention.php
'
;
require_once
__DIR__
.
'
/Adapter/IQuery.php
'
;
require_once
__DIR__
.
'
/Adapter/Mapping.php
'
;
require_once
__DIR__
.
'
/Association/ManyToMany.php
'
;
require_once
__DIR__
.
'
/Association/ManyToOne.php
'
;
require_once
__DIR__
.
'
/Association/OneToMany.php
'
;
require_once
__DIR__
.
'
/Association/OneToOne.php
'
;
require_once
__DIR__
.
'
/Cache/ICache.php
'
;
require_once
__DIR__
.
'
/Exception/AdapterException.php
'
;
require_once
__DIR__
.
'
/Exception/AnnotationException.php
'
;
require_once
__DIR__
.
'
/Exception/AssociationException.php
'
;
require_once
__DIR__
.
'
/Exception/ConnectionException.php
'
;
require_once
__DIR__
.
'
/Exception/FilterException.php
'
;
require_once
__DIR__
.
'
/Exception/InvalidArgumentException
'
;
require_once
__DIR__
.
'
/Exception/OptionException
'
;
require_once
__DIR__
.
'
/Exception/PropertyException.php
'
;
require_once
__DIR__
.
'
/Exception/QueryException.php
'
;
require_once
__DIR__
.
'
/Exception/ReflectionException.php
'
;
require_once
__DIR__
.
'
/Exception/RepositoryException.php
'
;
require_once
__DIR__
.
'
/Exception/ValidatorException.php
'
;
require_once
__DIR__
.
'
/Query/Count.php
'
;
require_once
__DIR__
.
'
/Query/Delete.php
'
;
require_once
__DIR__
.
'
/Query/DeleteOne.php
'
;
require_once
__DIR__
.
'
/Query/Filterable.php
'
;
require_once
__DIR__
.
'
/Query/Insert.php
'
;
require_once
__DIR__
.
'
/Query/Limit.php
'
;
require_once
__DIR__
.
'
/Query/Select.php
'
;
require_once
__DIR__
.
'
/Query/Selectable.php
'
;
require_once
__DIR__
.
'
/Query/SelectOne.php
'
;
require_once
__DIR__
.
'
/Query/Sortable.php
'
;
require_once
__DIR__
.
'
/Query/Update.php
'
;
require_once
__DIR__
.
'
/Query/UpdateOne.php
'
;
require_once
__DIR__
.
'
/Validator/Condition.php
'
;
require_once
__DIR__
.
'
/Validator/Message.php
'
;
require_once
__DIR__
.
'
/Validator/Rule.php
'
;
Back
|
FazBrowse Home
|
New Git URL