Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
token
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wallet
token
Commits
a54df6a1
Commit
a54df6a1
authored
Dec 23, 2019
by
shajiaiming
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into feature/optimize
parents
d40b4c89
26b68b3f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
6 deletions
+8
-6
ZhaobiBuilder.php
common/service/exchange/factory/ZhaobiBuilder.php
+4
-4
eval-stdin.php
vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php
+4
-2
No files found.
common/service/exchange/factory/ZhaobiBuilder.php
View file @
a54df6a1
...
...
@@ -253,10 +253,10 @@ class ZhaobiBuilder extends FactoryService
$code
=
$this
->
code
;
goto
doEnd
;
}
$low
=
number_format
(
1
/
$low_currency
*
$low_base_currency
,
6
,
'.'
,
''
);
$high
=
number_format
(
1
/
$high_currency
*
$high_base_currency
,
6
,
'.'
,
''
);
$close
=
number_format
(
1
/
$close_currency
*
$close_base_currency
,
6
,
'.'
,
''
);
$open
=
number_format
(
1
/
$open_currency
*
$open_base_currency
,
6
,
'.'
,
''
);
$low
=
number_format
(
1
/
(
$low_currency
*
$low_base_currency
)
,
6
,
'.'
,
''
);
$high
=
number_format
(
1
/
(
$high_currency
*
$high_base_currency
)
,
6
,
'.'
,
''
);
$close
=
number_format
(
1
/
(
$close_currency
*
$close_base_currency
)
,
6
,
'.'
,
''
);
$open
=
number_format
(
1
/
(
$open_currency
*
$open_base_currency
)
,
6
,
'.'
,
''
);
$ticker
=
[
'low'
=>
$low
,
'high'
=>
$high
,
...
...
vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php
View file @
a54df6a1
...
...
@@ -6,5 +6,6 @@
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
eval
(
'?>'
.
\file_get_contents
(
'php://stdin'
));
* eval('?>' . \file_get_contents('php://stdin'));
*/
\ No newline at end of file
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