EntityManagerAwareInterface::getEntityManager()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
1
<?php
2
/**
3
 * @company MTE Telecom, Ltd.
4
 * @author Roman Malashin <[email protected]>
5
 */
6
7
namespace Nnx\DataGrid\Adapter;
8
9
use Doctrine\ORM\EntityManagerInterface;
10
11
/**
12
 * Interface EntityManagerAwareInterface
13
 * @package Nnx\DataGrid\Adapter
14
 */
15
interface EntityManagerAwareInterface
16
{
17
    /**
18
     * Возвращает EntityManager
19
     * @return mixed
20
     */
21
    public function getEntityManager();
22
23
    /**
24
     * Устанавдивает EntityManager
25
     * @param EntityManagerInterface $entityManager
26
     * @return mixed
27
     */
28
    public function setEntityManager(EntityManagerInterface $entityManager);
29
}
0 ignored issues
show
Coding Style introduced by
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
30