Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CnChunfeng
/
scm_wms_outstore_service
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1735b4a4
authored
May 14, 2020
by
叶明星
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
注册命名空间
parent
2ae61334
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
3 deletions
composer.json
vendor/composer/ClassLoader.php
vendor/composer/autoload_psr4.php
vendor/composer/autoload_static.php
composer.json
View file @
1735b4a4
...
...
@@ -21,7 +21,8 @@
"autoload"
:
{
"psr-4"
:
{
"App
\\
"
:
"app/"
,
"Common
\\
"
:
"common/"
"Common
\\
"
:
"common/"
,
"ScmWmsCommon
\\
"
:
"scm_wms_common/"
},
"files"
:
[
"common/function.php"
,
...
...
vendor/composer/ClassLoader.php
View file @
1735b4a4
...
...
@@ -279,7 +279,7 @@ class ClassLoader
*/
public
function
setApcuPrefix
(
$apcuPrefix
)
{
$this
->
apcuPrefix
=
function_exists
(
'apcu_fetch'
)
&&
ini_get
(
'apc.enabled'
)
?
$apcuPrefix
:
null
;
$this
->
apcuPrefix
=
function_exists
(
'apcu_fetch'
)
&&
filter_var
(
ini_get
(
'apc.enabled'
),
FILTER_VALIDATE_BOOLEAN
)
?
$apcuPrefix
:
null
;
}
/**
...
...
@@ -377,7 +377,7 @@ class ClassLoader
$subPath
=
$class
;
while
(
false
!==
$lastPos
=
strrpos
(
$subPath
,
'\\'
))
{
$subPath
=
substr
(
$subPath
,
0
,
$lastPos
);
$search
=
$subPath
.
'\\'
;
$search
=
$subPath
.
'\\'
;
if
(
isset
(
$this
->
prefixDirsPsr4
[
$search
]))
{
$pathEnd
=
DIRECTORY_SEPARATOR
.
substr
(
$logicalPathPsr4
,
$lastPos
+
1
);
foreach
(
$this
->
prefixDirsPsr4
[
$search
]
as
$dir
)
{
...
...
vendor/composer/autoload_psr4.php
View file @
1735b4a4
...
...
@@ -24,6 +24,7 @@ return array(
'Symfony\\Component\\EventDispatcher\\'
=>
array
(
$vendorDir
.
'/symfony/event-dispatcher'
),
'Symfony\\Component\\Debug\\'
=>
array
(
$vendorDir
.
'/symfony/debug'
),
'Symfony\\Component\\Console\\'
=>
array
(
$vendorDir
.
'/symfony/console'
),
'ScmWmsCommon\\'
=>
array
(
$baseDir
.
'/scm_wms_common'
),
'Psr\\SimpleCache\\'
=>
array
(
$vendorDir
.
'/psr/simple-cache/src'
),
'Psr\\Log\\'
=>
array
(
$vendorDir
.
'/psr/log/Psr/Log'
),
'Psr\\Container\\'
=>
array
(
$vendorDir
.
'/psr/container/src'
),
...
...
vendor/composer/autoload_static.php
View file @
1735b4a4
...
...
@@ -48,6 +48,7 @@ class ComposerStaticInit5c9707cde9ea4e3942300fe24293f04f
'Symfony\\Component\\EventDispatcher\\'
=>
34
,
'Symfony\\Component\\Debug\\'
=>
24
,
'Symfony\\Component\\Console\\'
=>
26
,
'ScmWmsCommon\\'
=>
13
,
),
'P'
=>
array
(
...
...
@@ -199,6 +200,10 @@ class ComposerStaticInit5c9707cde9ea4e3942300fe24293f04f
array
(
0
=>
__DIR__
.
'/..'
.
'/symfony/console'
,
),
'ScmWmsCommon\\'
=>
array
(
0
=>
__DIR__
.
'/../..'
.
'/scm_wms_common'
,
),
'Psr\\SimpleCache\\'
=>
array
(
0
=>
__DIR__
.
'/..'
.
'/psr/simple-cache/src'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment