Completed
Pull Request — master (#64)
by Márk
05:20
created

RetryPlugin::handleRequest()   B

Complexity

Conditions 4
Paths 1

Size

Total Lines 29
Code Lines 15

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 17
CRAP Score 4

Importance

Changes 3
Bugs 1 Features 0
Metric Value
c 3
b 1
f 0
dl 0
loc 29
ccs 17
cts 17
cp 1
rs 8.5806
cc 4
eloc 15
nc 1
nop 3
crap 4
1
<?php
2
3
namespace Http\Client\Plugin;
4
5
/**
6
 * @author Joel Wurtz <[email protected]>
7
 *
8
 * @deprecated since version 1.1, to be removed in 2.0. Use {@link \Http\Client\Common\Plugin\RetryPlugin} instead.
9
 */
10
class RetryPlugin extends \Http\Client\Common\Plugin\RetryPlugin implements Plugin
0 ignored issues
show
Deprecated Code introduced by
The interface Http\Client\Plugin\Plugin has been deprecated with message: since version 1.1, to be removed in 2.0. Use {@link \Http\Client\Common\Plugin} instead.

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
11
{
12
}
13