forked from conperience/lucille
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautoload.php
100 lines (100 loc) · 9.53 KB
/
autoload.php
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'lucille\\command' => '/src/framework/Command.php',
'lucille\\components\\stream\\exceptions\\cannotregisterstreamexception' => '/src/components/stream/exceptions/CannotRegisterStreamException.php',
'lucille\\components\\stream\\exceptions\\cannotunregisterstreamexception' => '/src/components/stream/exceptions/CannotUnregisterStreamException.php',
'lucille\\components\\stream\\exceptions\\streamalreadyregisteredexception' => '/src/components/stream/exceptions/StreamAlreadyRegisteredException.php',
'lucille\\components\\stream\\exceptions\\streamnotregisteredexception' => '/src/components/stream/exceptions/StreamNotRegisteredException.php',
'lucille\\components\\stream\\stream' => '/src/components/stream/Stream.php',
'lucille\\components\\stream\\streamname' => '/src/components/stream/StreamName.php',
'lucille\\components\\xml\\exceptions\\loadingxmlfailedexception' => '/src/components/xmlcontent/exceptions/LoadingXmlFailedException.php',
'lucille\\components\\xml\\exceptions\\loadingxmlfilefailedexception' => '/src/components/xmlcontent/exceptions/LoadingXmlFileFailedException.php',
'lucille\\components\\xml\\exceptions\\xmlmultiplenodesfoundexception' => '/src/components/xmlcontent/exceptions/XmlMultipleNodesFoundException.php',
'lucille\\components\\xml\\exceptions\\xmlnodenotfoundexception' => '/src/components/xmlcontent/exceptions/XmlNodeNotFoundException.php',
'lucille\\components\\xml\\exceptions\\xmltargetidnotfoundexception' => '/src/components/xmlcontent/exceptions/XmlTargetIdNotFoundException.php',
'lucille\\components\\xml\\exceptions\\xmltargetidnotuniqueexception' => '/src/components/xmlcontent/exceptions/XmlTargetIdNotUniqueException.php',
'lucille\\components\\xml\\genericxmlcontent' => '/src/components/xmlcontent/GenericXmlContent.php',
'lucille\\components\\xml\\xhtmlcontent' => '/src/components/xmlcontent/xhtml/XhtmlContent.php',
'lucille\\components\\xml\\xhtmlcontentresultrouter' => '/src/components/xmlcontent/xhtml/XhtmlContentResultRouter.php',
'lucille\\components\\xml\\xhtmlresponse' => '/src/components/xmlcontent/xhtml/XhtmlResponse.php',
'lucille\\components\\xml\\xmlcontent' => '/src/components/xmlcontent/xml/XmlContent.php',
'lucille\\components\\xml\\xmlcontentinterface' => '/src/components/xmlcontent/XmlContentInterface.php',
'lucille\\components\\xml\\xmlcontentresultrouter' => '/src/components/xmlcontent/xml/XmlContentResultRouter.php',
'lucille\\components\\xml\\xmlresponse' => '/src/components/xmlcontent/xml/XmlResponse.php',
'lucille\\components\\xml\\xpathquery' => '/src/components/xmlcontent/XPathQuery.php',
'lucille\\components\\xsl\\exceptions\\importingxslstylesheetfailedexception' => '/src/components/xsl/exceptions/ImportingXslStylesheetFailedException.php',
'lucille\\components\\xsl\\exceptions\\loadingxslstylesheetfailedexception' => '/src/components/xsl/exceptions/LoadingXslStylesheetFailedException.php',
'lucille\\components\\xsl\\xslprocessor' => '/src/components/xsl/XslProcessor.php',
'lucille\\directory' => '/src/framework/Directory.php',
'lucille\\exceptions\\directorynotfoundexception' => '/src/framework/exceptions/DirectoryNotFoundException.php',
'lucille\\exceptions\\filenotfoundexception' => '/src/framework/exceptions/FileNotFoundException.php',
'lucille\\exceptions\\headernotfoundexception' => '/src/framework/exceptions/HeaderNotFoundException.php',
'lucille\\exceptions\\lucilleexception' => '/src/framework/exceptions/LucilleException.php',
'lucille\\exceptions\\requestparametercollectionnotfoundexception' => '/src/framework/exceptions/RequestParameterCollectionNotFoundException.php',
'lucille\\exceptions\\requestparameternotfoundexception' => '/src/framework/exceptions/RequestParameterNotFoundException.php',
'lucille\\exceptions\\routingchainconfigurationexception' => '/src/framework/exceptions/RoutingChainConfigurationException.php',
'lucille\\exceptions\\unsupportedrequestmethodexception' => '/src/framework/exceptions/UnsupportedRequestMethodException.php',
'lucille\\exceptions\\unsupportedroutingchainexception' => '/src/framework/exceptions/UnsupportedRoutingChainException.php',
'lucille\\exceptions\\uripartindexoutofboundsexception' => '/src/framework/exceptions/UriPartIndexOutOfBoundsException.php',
'lucille\\factory' => '/src/Factory.php',
'lucille\\filename' => '/src/framework/Filename.php',
'lucille\\header\\header' => '/src/framework/header/Header.php',
'lucille\\header\\headercollection' => '/src/framework/header/HeaderCollection.php',
'lucille\\query' => '/src/framework/Query.php',
'lucille\\request\\body\\emptyrequestbody' => '/src/framework/request/body/EmptyRequestBody.php',
'lucille\\request\\body\\rawrequestbody' => '/src/framework/request/body/RawRequestBody.php',
'lucille\\request\\body\\requestbody' => '/src/framework/request/body/RequestBody.php',
'lucille\\request\\body\\requestbodyfactory' => '/src/framework/request/body/RequestBodyFactory.php',
'lucille\\request\\deleterequest' => '/src/framework/request/DeleteRequest.php',
'lucille\\request\\getrequest' => '/src/framework/request/GetRequest.php',
'lucille\\request\\parameter\\numericrequestparametername' => '/src/framework/request/parameter/name/NumericRequestParameterName.php',
'lucille\\request\\parameter\\requestparameter' => '/src/framework/request/parameter/RequestParameter.php',
'lucille\\request\\parameter\\requestparametercollection' => '/src/framework/request/parameter/RequestParameterCollection.php',
'lucille\\request\\parameter\\requestparametername' => '/src/framework/request/parameter/name/RequestParameterName.php',
'lucille\\request\\parameter\\stringrequestparameter' => '/src/framework/request/parameter/StringRequestParameter.php',
'lucille\\request\\parameter\\stringrequestparametername' => '/src/framework/request/parameter/name/StringRequestParameterName.php',
'lucille\\request\\patchrequest' => '/src/framework/request/PatchRequest.php',
'lucille\\request\\postrequest' => '/src/framework/request/PostRequest.php',
'lucille\\request\\putrequest' => '/src/framework/request/PutRequest.php',
'lucille\\request\\request' => '/src/framework/request/Request.php',
'lucille\\request\\requestfactory' => '/src/framework/request/RequestFactory.php',
'lucille\\request\\requestmethod' => '/src/framework/request/RequestMethod.php',
'lucille\\request\\uri' => '/src/framework/request/uri/Uri.php',
'lucille\\request\\uripart' => '/src/framework/request/uri/UriPart.php',
'lucille\\request\\uriregex' => '/src/framework/request/uri/UriRegEx.php',
'lucille\\requestprocessor' => '/src/framework/RequestProcessor.php',
'lucille\\response\\genericresponse' => '/src/framework/response/GenericResponse.php',
'lucille\\response\\lucilleerrorresponse' => '/src/framework/response/LucilleErrorResponse.php',
'lucille\\response\\response' => '/src/framework/response/Response.php',
'lucille\\result\\result' => '/src/framework/Result.php',
'lucille\\routing\\deleterouter' => '/src/framework/routing/router/DeleteRouter.php',
'lucille\\routing\\deleteroutingchain' => '/src/framework/routing/chain/DeleteRoutingChain.php',
'lucille\\routing\\getrouter' => '/src/framework/routing/router/GetRouter.php',
'lucille\\routing\\getroutingchain' => '/src/framework/routing/chain/GetRoutingChain.php',
'lucille\\routing\\patchrouter' => '/src/framework/routing/router/PatchRouter.php',
'lucille\\routing\\patchroutingchain' => '/src/framework/routing/chain/PatchRoutingChain.php',
'lucille\\routing\\postrouter' => '/src/framework/routing/router/PostRouter.php',
'lucille\\routing\\postroutingchain' => '/src/framework/routing/chain/PostRoutingChain.php',
'lucille\\routing\\putrouter' => '/src/framework/routing/router/PutRouter.php',
'lucille\\routing\\putroutingchain' => '/src/framework/routing/chain/PutRoutingChain.php',
'lucille\\routing\\resultrouter' => '/src/framework/routing/router/ResultRouter.php',
'lucille\\routing\\resultroutingchain' => '/src/framework/routing/chain/ResultRoutingChain.php',
'lucille\\routing\\routingchain' => '/src/framework/routing/chain/RoutingChain.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd