Completed
Push — master ( dc82d8...d048aa )
by Kristof
14:05
created

UpdateImage::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 6
rs 9.4285
cc 1
eloc 4
nc 1
nop 3
1
<?php
2
3
namespace CultuurNet\UDB3\Place\Commands;
4
5
use CultuurNet\UDB3\Offer\ImageUpdateTrait;
6
7
/**
8
 * Provides a command to update an image of the place.
9
 */
10
class UpdateImage
11
{
12
    use ImageUpdateTrait;
13
}
14