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

ProgressStepCollection::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
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