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

changing maxresults? #10

Open
fl0wx opened this issue Sep 2, 2016 · 1 comment
Open

changing maxresults? #10

fl0wx opened this issue Sep 2, 2016 · 1 comment

Comments

@fl0wx
Copy link

fl0wx commented Sep 2, 2016

Hey,

how can i change the maxresults?

Greetings,

Flow

@fl0wx
Copy link
Author

fl0wx commented Sep 2, 2016

Maybe update the search function like this??

public static function search( $jql = NULL , $startAt = 0, $maxResults = 50, $fields = NULL)
    {
        if($fields == NULL)
        {
            $data = json_encode( array( 'jql' => $jql, 'startAt' => $startAt, 'maxResults' => $maxResults));
        }
        else
        {
            $data = json_encode( array( 'jql' => $jql, 'startAt' => $startAt, 'maxResults' => $maxResults, 'fields' => $fields));
        }
        $result = self::request( 'search', $data );

        return json_decode( $result );
    }

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