Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
remove constant visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewgoslett committed Feb 6, 2017
1 parent e90c05d commit 9c1f2f6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .styleci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ enabled:
- blank_line_after_opening_tag
- cast_spaces
- concat_with_spaces
- const_visibility_required
- declare_equal_normalize
- function_typehint_space
- hash_to_slash_comment
Expand Down
2 changes: 1 addition & 1 deletion src/Money.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class Money
{
public const DEFAULT_SCALE_FACTOR = 4;
const DEFAULT_SCALE_FACTOR = 4;

/**
* @var string
Expand Down

0 comments on commit 9c1f2f6

Please sign in to comment.