Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
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
PSDI Army
yii2
Commits
9f6cc541
Commit
9f6cc541
authored
Feb 24, 2014
by
Vincent
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated code according to code style and removed unused property
parent
3cb97fb8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
Formatter.php
framework/base/Formatter.php
+6
-7
No files found.
framework/base/Formatter.php
View file @
9f6cc541
...
...
@@ -71,11 +71,11 @@ class Formatter extends Component
* They correspond to the base at which a kilobyte is calculated (1000 or 1024 bytes per kilobyte, defaults to 1024),
* the number of digits after the decimal point (defaults to 2) and the character displayed as the decimal point.
*/
public
$sizeFormat
=
array
(
'base'
=>
1024
,
'decimals'
=>
2
,
'decimalSeparator'
=>
null
,
)
;
public
$sizeFormat
=
[
'base'
=>
1024
,
'decimals'
=>
2
,
'decimalSeparator'
=>
null
,
]
;
/**
* Initializes the component.
...
...
@@ -425,7 +425,6 @@ class Formatter extends Component
*/
public
function
asSize
(
$value
,
$verbose
=
false
)
{
$units
=
[
'B'
,
'KB'
,
'MB'
,
'GB'
,
'TB'
,
'PB'
];
$position
=
0
;
do
{
...
...
@@ -435,7 +434,7 @@ class Formatter extends Component
$value
=
$value
/
$this
->
sizeFormat
[
'base'
];
$position
++
;
}
while
(
$position
<
count
(
$units
)
);
}
while
(
$position
<
6
);
$value
=
round
(
$value
,
$this
->
sizeFormat
[
'decimals'
]);
$formattedValue
=
isset
(
$this
->
sizeFormat
[
'decimalSeparator'
])
?
str_replace
(
'.'
,
$this
->
sizeFormat
[
'decimalSeparator'
],
$value
)
:
$value
;
...
...
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