Completed
Push — master ( ca8ded...dc27cf )
by Karel
22s queued 11s
created

src/Event/IndexEvent.php (1 issue)

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
/*
4
 * This file is part of the FOSElasticaBundle package.
5
 *
6
 * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace FOS\ElasticaBundle\Event;
13
14
use Symfony\Component\EventDispatcher\Event;
15
16
class IndexEvent extends Event
0 ignored issues
show
Deprecated Code introduced by
The class Symfony\Component\EventDispatcher\Event has been deprecated with message: since Symfony 4.3, use "Symfony\Contracts\EventDispatcher\Event" 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...
17
{
18
    /**
19
     * @var string
20
     */
21
    private $index;
22
23
    /**
24
     * @param string $index
25
     */
26 22
    public function __construct($index)
27
    {
28 22
        $this->index = $index;
29 22
    }
30
31
    /**
32
     * @return string
33
     */
34 2
    public function getIndex()
35
    {
36 2
        return $this->index;
37
    }
38
}
39