Completed
Branch BUG-8511-spco-revisit-oversell... (0aad32)
by
unknown
34:42 queued 17:09
created

ProgressStepCollection   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 12
rs 10
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
namespace EventEspresso\core\services\progress_steps;
3
4
use EventEspresso\core\services\collections\Collection;
5
6
7
if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) {
8
	exit( 'No direct script access allowed' );
9
}
10
11
12
13
/**
14
 * Class ProgressStepCollection
15
 * an SplObjectStorage container for objects that implement
16
 * \EventEspresso\core\services\progress_steps\ProgressStepInterface
17
 *
18
 * @package       Event Espresso
19
 * @subpackage    core
20
 * @author        Brent Christensen
21
 * @since         4.9.0
22
 */
23
class ProgressStepCollection extends Collection {
24
25
	/**
26
	 * ProgressStepCollection constructor.
27
	 *
28
	 * @throws \EventEspresso\core\exceptions\InvalidInterfaceException
29
	 */
30
	public function __construct() {
31
		parent::__construct( '\EventEspresso\core\services\progress_steps\ProgressStepInterface' );
32
	}
33
34
}
35
// End of file ProgressStepCollection.php
36
// Location: /ProgressStepCollection.php