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

Fixed keys( ) , all( ) function ("magical" call ) #401

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Fixed keys( ) , all( ) function ("magical" call ) #401

wants to merge 3 commits into from

Commits on Jul 7, 2019

  1. Fixed keys( ) , all( ) function ("magical" call )

    Previously "magical" call version of the functions 'keys' , 'all' would break as the call : 
            keys( "key1" , "key2" , "key3" , false );
     would result in $mask = ( "key1" , "key2" , "key3" , false ) whereas $fill_with_nulls = "key2" (ultimately translating to true) thus breaking the intended function call which is $mask = ( "key1" , "key2" , "key3" ) and $fill_with_nulls = false
    
    Same is applicable for the function 'all'
    digantaTheProgrammer committed Jul 7, 2019
    Configuration menu
    Copy the full SHA
    767bd4d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8983206 View commit details
    Browse the repository at this point in the history
  3. Fixing travis.yml

    Dropping PHP 5.3 as suggested by others
    digantaTheProgrammer committed Jul 7, 2019
    Configuration menu
    Copy the full SHA
    d7cc212 View commit details
    Browse the repository at this point in the history