-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add formatters for numbers and currency (#37)
* add commit-stage context The commit-stage context (https://circleci.com/docs/2.0/contexts/) includes AWS access keys for pulling (and pushing) images to our ECR repos. Co-authored-by: Adam Hawkins <adam@skillshare.com>
- Loading branch information
Showing
57 changed files
with
22,790 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of skillshare/formatphp | ||
* | ||
* skillshare/formatphp is open source software: you can distribute | ||
* it and/or modify it under the terms of the MIT License | ||
* (the "License"). You may not use this file except in | ||
* compliance with the License. | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
* implied. See the License for the specific language governing | ||
* permissions and limitations under the License. | ||
* | ||
* @copyright Copyright (c) Skillshare, Inc. <https://www.skillshare.com> | ||
* @license https://opensource.org/licenses/MIT MIT License | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace FormatPHP\Exception; | ||
|
||
/** | ||
* Thrown when we are unable to format a number | ||
*/ | ||
class UnableToFormatNumberException extends UnableToFormatStringException | ||
{ | ||
} |
Oops, something went wrong.