Swift_SignedMessage
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
wmc 0
lcom 0
cbo 1
1
<?php
2
3
/*
4
 * This file is part of SwiftMailer.
5
 * (c) 2004-2009 Chris Corbyn
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
/**
12
 * Signed Message, message that can be signed using a signer.
13
 *
14
 * This class is only kept for compatibility
15
 *
16
 *
17
 * @author     Xavier De Cock <[email protected]>
18
 *
19
 * @deprecated
20
 */
21
class Swift_SignedMessage extends Swift_Message
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
22
{
23
}
24