1234567891011121314151617181920212223242526 |
- <?php
- /**
- * Gearman Bundle for Symfony2
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- *
- * Feel free to edit as you please, and have fun.
- *
- * @author Marc Morera <yuhu@mmoreram.com>
- */
- namespace Mmoreram\GearmanBundle\Event;
- use Mmoreram\GearmanBundle\Event\Abstracts\AbstractGearmanClientTaskEvent;
- /**
- * GearmanClientCallbackWorkloadEvent
- *
- * @since 2.3.1
- */
- class GearmanClientCallbackWorkloadEvent extends AbstractGearmanClientTaskEvent
- {
- }
|