@@ -17,8 +17,6 @@ |
||
17 | 17 | use Nette; |
18 | 18 | use Nette\DI; |
19 | 19 | use Nette\Utils; |
20 | -use Nette\PhpGenerator as Code; |
|
21 | - |
|
22 | 20 | use IPub\DoctrineBlameable; |
23 | 21 | use IPub\DoctrineBlameable\Events; |
24 | 22 | use IPub\DoctrineBlameable\Mapping; |
@@ -86,7 +86,7 @@ |
||
86 | 86 | |
87 | 87 | $builder->addDefinition($this->prefix('subscriber')) |
88 | 88 | ->setClass(Events\BlameableSubscriber::CLASS_NAME) |
89 | - ->setArguments([$userCallable instanceof DI\ServiceDefinition ? '@' . $userCallable->getClass() : NULL]); |
|
89 | + ->setArguments([$userCallable instanceof DI\ServiceDefinition ? '@'.$userCallable->getClass() : NULL]); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | public function beforeCompile() |
@@ -329,7 +329,7 @@ |
||
329 | 329 | */ |
330 | 330 | private static function getCacheId($className) |
331 | 331 | { |
332 | - return $className . '\\$' . strtoupper(str_replace('\\', '_', __NAMESPACE__)) . '_CLASSMETADATA'; |
|
332 | + return $className.'\\$'.strtoupper(str_replace('\\', '_', __NAMESPACE__)).'_CLASSMETADATA'; |
|
333 | 333 | } |
334 | 334 | |
335 | 335 | } |