AbstractConstCollectionArray
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 0
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 6
ccs 0
cts 0
cp 0
1
<?php
2
3
// Copyright (c) Lellys Informática. All rights reserved. See License.txt in the project root for license information.
4
namespace Collections;
5
6
/**
7
 * Provides the abstract base class for a strongly typed collection.
8
 */
9
abstract class AbstractConstCollectionArray extends AbstractCollection implements
10
    \Serializable,
11
    \JsonSerializable
12
{
13
  
14
}
15