Skip to content

Commit

Permalink
Remove incorrectly designed getRate (#20)
Browse files Browse the repository at this point in the history
* Remove incorrectly designed getRate

The method is backwards making the VO dependent on the outside.
This allows marking it immutable.
Also linters are updated.

* Remove PHP 7.3 from supported versions
  • Loading branch information
2e3s authored Feb 9, 2022
1 parent eb12350 commit 34253d3
Show file tree
Hide file tree
Showing 12 changed files with 577 additions and 609 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['7.3', '7.4', '8.0']
php-version: ['7.4', '8.0']

env:
EXECUTE_COVERAGE: ${{ matrix.php-version == '7.3' }}
EXECUTE_COVERAGE: ${{ matrix.php-version == '7.4' }}
CLOVER_PATH: "clover.xml"

steps:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:

strategy:
matrix:
php-version: ['7.3']
php-version: ['7.4']

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:

strategy:
matrix:
php-version: ['7.3']
php-version: ['7.4']

steps:
- uses: actions/checkout@v2
Expand Down
153 changes: 153 additions & 0 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
<?php
/**
* This source file is proprietary and part of Rebilly.
*
* (c) Rebilly SRL
* Rebilly Ltd.
* Rebilly Inc.
*
* @see https://www.rebilly.com
*/

declare(strict_types=1);

use PhpCsFixer\Config;
use PhpCsFixer\Finder;

$header = <<<'EOF'
This source file is proprietary and part of Rebilly.
(c) Rebilly SRL
Rebilly Ltd.
Rebilly Inc.
@see https://www.rebilly.com
EOF;

$rules = [
'@PSR2' => true,
'array_syntax' => ['syntax' => 'short'],
'binary_operator_spaces' => true,
'blank_line_before_statement' => true,
'cast_spaces' => true,
'class_attributes_separation' => true,
'combine_consecutive_issets' => true,
'combine_consecutive_unsets' => true,
'compact_nullable_typehint' => true,
'concat_space' => ['spacing' => 'one'],
'declare_equal_normalize' => ['space' => 'none'],
// 'declare_strict_types' => true,
'dir_constant' => true,
'ereg_to_preg' => true,
'explicit_indirect_variable' => true,
'explicit_string_variable' => true,
'general_phpdoc_annotation_remove' => ['annotations' => ['author', 'version']],
'global_namespace_import' => [
'import_classes' => true,
'import_constants' => true,
'import_functions' => true,
],
// 'header_comment' => [
// 'header' => $header,
// 'commentType' => 'PHPDoc',
// 'separate' => 'bottom',
// 'location' => 'after_open',
// ],
'heredoc_to_nowdoc' => true,
'increment_style' => ['style' => 'pre'],
'list_syntax' => ['syntax' => 'short'],
'lowercase_cast' => true,
'magic_constant_casing' => true,
'mb_str_functions' => true,
'method_argument_space' => ['on_multiline' => 'ensure_fully_multiline'],
'method_chaining_indentation' => true,
'modernize_types_casting' => true,
'native_function_casing' => true,
// 'native_function_invocation' => true,
'new_with_braces' => true,
'no_alias_functions' => true,
'no_blank_lines_after_class_opening' => true,
'no_blank_lines_after_phpdoc' => true,
'no_empty_comment' => true,
'no_empty_phpdoc' => true,
'no_empty_statement' => true,
'no_extra_blank_lines' => ['tokens' => ['break', 'continue', 'extra', 'return', 'throw', 'use', 'parenthesis_brace_block', 'square_brace_block', 'curly_brace_block']],
'no_homoglyph_names' => true,
'no_leading_import_slash' => true,
'no_leading_namespace_whitespace' => true,
'no_mixed_echo_print' => true,
'no_multiline_whitespace_around_double_arrow' => true,
'no_null_property_initialization' => true,
'no_php4_constructor' => true,
'no_short_bool_cast' => true,
'no_singleline_whitespace_before_semicolons' => true,
'no_spaces_around_offset' => true,
'no_superfluous_elseif' => true,
'no_trailing_comma_in_singleline_array' => true,
'no_unneeded_control_parentheses' => true,
'no_unneeded_curly_braces' => true,
'no_unneeded_final_method' => true,
'no_unreachable_default_argument_value' => true,
'no_unused_imports' => true,
'no_useless_else' => true,
'no_useless_return' => true,
'no_whitespace_before_comma_in_array' => true,
'no_whitespace_in_blank_line' => true,
'normalize_index_brace' => true,
'ordered_class_elements' => true,
'ordered_imports' => true,
'php_unit_construct' => true,
'php_unit_dedicate_assert' => true,
'php_unit_expectation' => true,
'php_unit_mock' => true,
'php_unit_namespaced' => true,
'php_unit_no_expectation_annotation' => true,
'php_unit_strict' => true,
'php_unit_test_annotation' => ['style' => 'prefix'],
'phpdoc_add_missing_param_annotation' => true,
// Temporary disabled because @inheritdoc can be explicit inheritance tag now
// see: https://github.com/FriendsOfPHP/PHP-CS-Fixer/pull/2619
// 'phpdoc_inline_tag' => true,
'phpdoc_no_access' => true,
'phpdoc_no_alias_tag' => true,
'phpdoc_no_empty_return' => true,
'phpdoc_no_package' => true,
'phpdoc_no_useless_inheritdoc' => true,
'phpdoc_order' => true,
'phpdoc_separation' => true,
'phpdoc_types_order' => true,
'phpdoc_var_without_name' => true,
'pow_to_exponentiation' => true,
'protected_to_private' => true,
'random_api_migration' => true,
'return_type_declaration' => true,
'self_accessor' => true,
'semicolon_after_instruction' => true,
'short_scalar_cast' => true,
'single_blank_line_before_namespace' => true,
'single_line_comment_style' => true,
'single_quote' => true,
'standardize_not_equals' => true,
'strict_comparison' => true,
'strict_param' => true,
'ternary_to_null_coalescing' => true,
'trailing_comma_in_multiline' => ['elements' => ['arrays']],
'trim_array_spaces' => true,
'unary_operator_spaces' => true,
'yoda_style' => false,
'object_operator_without_whitespace' => true,
];


$finder = (new Finder())
->ignoreDotFiles(true)
->ignoreVCS(true)
->in([__DIR__ . '/src', __DIR__ . '/tests'])
->name('*.php')
->exclude('vendor');

return (new Config())
->setFinder($finder)
->setRules($rules)
->setRiskyAllowed(true)
->setUsingCache(true);
145 changes: 0 additions & 145 deletions .php_cs

This file was deleted.

3 changes: 0 additions & 3 deletions .psalm/baseline.xml

This file was deleted.

Loading

0 comments on commit 34253d3

Please sign in to comment.