Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replaces "n" with bool(false) but not "y" with bool(true) #78

Open
demonking opened this issue Oct 16, 2019 · 0 comments
Open

Replaces "n" with bool(false) but not "y" with bool(true) #78

demonking opened this issue Oct 16, 2019 · 0 comments

Comments

@demonking
Copy link

demonking commented Oct 16, 2019

It's a wrong behaviour to cast such information to any kind of datatype.
Symfony/yaml handles this without any problems

    name: canaccess
    field: can_access
    convert:
        translate:
            -
                pattern: j
                replacement: 1
            -
                pattern: n
                replacement: 0
Result : 

 ["convert"]=>
    array(1) {
      ["translate"]=>
      array(2) {
        [0]=>
        array(2) {
          ["pattern"]=>
          string(1) "j"
          ["replacement"]=>
          int(1)
        }
        [1]=>
        array(2) {
          ["pattern"]=>
          bool(false)
          ["replacement"]=>
          int(0)
        }
      }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant