Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
1 / 1
Rotate
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
2 / 2
2
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 perform
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3/**
4 * Karla ImageMagick wrapper library
5 *
6 * PHP Version 8.0<
7 *
8 * @category Utility
9 * @author   Johannes Skov Frandsen <jsf@greenoak.dk>
10 * @license  http://www.opensource.org/licenses/mit-license.php MIT
11 * @link     https://github.com/localgod/karla Karla
12 * @since    2013-05-26
13 */
14
15declare(strict_types=1);
16
17namespace Karla\Action;
18
19use Karla\Query;
20use Karla\Action;
21
22/**
23 * Class for handling rotate action
24 *
25 * @category Utility
26 * @author   Johannes Skov Frandsen <jsf@greenoak.dk>
27 * @license  http://www.opensource.org/licenses/mit-license.php MIT
28 * @link     https://github.com/localgod/karla Karla
29 */
30class Rotate implements Action
31{
32    /**
33     * Degrees to rotate the image
34     *
35     * @var int
36     */
37    private int $degree;
38
39    /**
40     * Rotate image
41     *
42     * @param int $degree Degrees to rotate the image
43     *
44     * @throws \InvalidArgumentException if degree is not an integer value
45     */
46    public function __construct(int $degree)
47    {
48        $this->degree = $degree;
49    }
50
51    /**
52     * (non-PHPdoc)
53     *
54     * @param Query $query The query to add the action to
55     *
56     * @see Action::perform()
57     */
58    public function perform(Query $query): Query
59    {
60        $query->notWith('rotate', Query::ARGUMENT_TYPE_INPUT);
61        $query->setInputOption(' -rotate "' . $this->degree . '"');
62        return $query;
63    }
64}