mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 20:43:25 +00:00
19 lines
310 B
PHP
19 lines
310 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Core\Event;
|
|
|
|
use Symfony\Component\EventDispatcher\Event;
|
|
|
|
class CollectionUnmounted extends CollectionRelated
|
|
{
|
|
public function getCollId()
|
|
{
|
|
return $this->args['coll_id'];
|
|
}
|
|
|
|
public function getName()
|
|
{
|
|
return $this->args['name'];
|
|
}
|
|
}
|