1 <?php
2 /**
3 * @package Joomla.Legacy
4 * @subpackage Dispatcher
5 *
6 * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
7 * @license GNU General Public License version 2 or later; see LICENSE.txt
8 */
9
10 defined('JPATH_PLATFORM') or die;
11
12 /**
13 * Deprecated class placeholder. You should use JEventDispatcher instead.
14 *
15 * @since 1.5
16 * @deprecated 3.0
17 */
18 class JDispatcher extends JEventDispatcher
19 {
20 /**
21 * Constructor.
22 *
23 * @since 1.5
24 */
25 public function __construct()
26 {
27 JLog::add('JDispatcher is deprecated. Use JEventDispatcher instead.', JLog::WARNING, 'deprecated');
28 parent::__construct();
29 }
30 }
31