1 <?php
2
3 /*
4 * WORDSMITH SCRIPT CLASS
5 *
6 * this class is the base object for a custom action to be added into wordpress.
7 * it is a best prectise initiative that all actions to implement custom wordpress logic be enclosed in a single class which exnteds this class.
8 */
9
10 namespace nk2580\wordsmith\Scripts;
11
12 class PublicScript extends \nk2580\wordsmith\Actions\Action {
13
14 protected $hook = "wp_enqueue_scripts";
15
16 }
17