Completed
Pull Request — master (#2)
by Pol
12:05
created

GenerateUUIDs

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Dependencies 1

Importance

Changes 0
Metric Value
wmc 0
cbo 1
dl 0
loc 7
c 0
b 0
f 0
1
<?php
2
3
namespace drupol\Yaroc\Plugin\Method;
4
5
use drupol\Yaroc\Plugin\AbstractMethodPlugin;
6
7
/**
8
 * Class GenerateUUIDs.
9
 */
10
class GenerateUUIDs extends AbstractMethodPlugin
11
{
12
    /**
13
     * {@inheritdoc}
14
     */
15
    const METHOD = 'generateUUIDs';
16
}
17