Completed
Push — master ( aee42a...b52690 )
by Wim
8s
created

MySerializable   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
wmc 2
lcom 0
cbo 0
1
<?php
2
3
class MyCountable implements Countable {}
4
class MyOuterIterator implements OuterIterator {}
5
class MyRecursiveIterator implements RecursiveIterator {}
6
class MySeekableIterator implements SeekableIterator {}
7
class MySerializable implements Serializable {
8
	public function __sleep() {}
9
	public function __wakeup() {}
10
}
11
class MySplObserver implements SplObserver {}
12
class MySplSubject implements SplSubject {}
13
class MyJsonSerializable implements JsonSerializable {}
14
class MySessionHandlerInterface implements SessionHandlerInterface {}
15
16
class MyMultiple implements SplSubject, JsonSerializable, Countable {}
17
18
class MyUppercase implements COUNTABLE {}
19
class MyLowercase implements countable {}
20