Completed
Push — master ( eb5db0...0b2361 )
by Lucas
02:07
created

Processor/Processor.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Kasifi\PdfParserBundle\Processor;
4
5
/**
6
 * Class Processor.
7
 */
8
abstract class Processor
9
{
10
    /**
11
     * @var array
12
     */
13
    protected $configuration;
14
15
    /**
16
     * @return array
17
     */
18
    public function getConfiguration()
19
    {
20
        return $this->configuration;
21
    }
22
23
    public function __toString()
24
    {
25
        return (string) $this->configuration['name'];
26
    }
27
28
    public function frenchDateFormatter($raw)
0 ignored issues
show
The parameter $raw is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
29
    {
30
    }
31
}
32