• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

tylernathanreed / jira-client-php / 13634794100

03 Mar 2025 03:19PM UTC coverage: 2.067% (-0.1%) from 2.21%
13634794100

push

github

web-flow
~ Try coveralls action

140 of 6773 relevant lines covered (2.07%)

0.03 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/Operations/ClassificationLevels.php
1
<?php
2

3
namespace Jira\Client\Operations;
4

5
use Jira\Client\Client;
6
use Jira\Client\Schema;
7

8
/** @phpstan-require-extends Client */
9
trait ClassificationLevels
10
{
11
    /**
12
     * Returns all classification levels
13
     * 
14
     * **"Permissions" required:** None.
15
     * 
16
     * @param ?list<'PUBLISHED'|'ARCHIVED'|'DRAFT'> $status Optional set of statuses to filter by.
17
     * @param 'rank'|'-rank'|'+rank'|null $orderBy
18
     *        Ordering of the results by a given field.
19
     *        If not provided, values will not be sorted.
20
     */
21
    public function getAllUserDataClassificationLevels(
×
22
        ?array $status = null,
23
        ?string $orderBy = null,
24
    ): Schema\DataClassificationLevelsBean {
25
        return $this->call(
×
26
            uri: '/rest/api/3/classification-levels',
×
27
            method: 'get',
×
28
            query: compact('status', 'orderBy'),
×
29
            success: 200,
×
30
            schema: Schema\DataClassificationLevelsBean::class,
×
31
        );
×
32
    }
33
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc