Passed
Push — master ( 315e77...e369d0 )
by Jonathan
16:56
created

Assert::reportInvalidArgument()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 1
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * ReportingCloud PHP SDK
6
 *
7
 * PHP SDK for ReportingCloud Web API. Authored and supported by Text Control GmbH.
8
 *
9
 * @link      https://www.reporting.cloud to learn more about ReportingCloud
10
 * @link      https://github.com/TextControl/txtextcontrol-reportingcloud-php for the canonical source repository
11
 * @license   https://raw.githubusercontent.com/TextControl/txtextcontrol-reportingcloud-php/master/LICENSE.md
12
 * @copyright © 2019 Text Control GmbH
13
 */
14
15
namespace TxTextControl\ReportingCloud\Assert;
16
17
/**
18
 * Class Assert
19
 *
20
 * @package TxTextControl\ReportingCloud
21
 * @author  Jonathan Maron (@JonathanMaron)
22
 */
23
class Assert extends AbstractAssert
24
{
25
    use AssertApiKeyTrait;
26
    use AssertArrayTrait;
27
    use AssertBase64DataTrait;
28
    use AssertBooleanTrait;
29
    use AssertCultureTrait;
30
    use AssertDateTimeTrait;
31
    use AssertDocumentDividerTrait;
32
    use AssertDocumentExtensionTrait;
33
    use AssertDocumentThumbnailExtensionTrait;
34
    use AssertFilenameExistsTrait;
35
    use AssertImageFormatTrait;
36
    use AssertIntegerTrait;
37
    use AssertLanguageTrait;
38
    use AssertOneOfTrait;
39
    use AssertPageTrait;
40
    use AssertRangeTrait;
41
    use AssertReturnFormatTrait;
42
    use AssertStringTrait;
43
    use AssertTemplateExtensionTrait;
44
    use AssertTemplateFormatTrait;
45
    use AssertTemplateNameTrait;
46
    use AssertTimestampTrait;
47
    use AssertZoomFactorTrait;
48
}
49