PATH:
home
/
lab2454c
/
bullionmils.com
/
wp-content
/
plugins
/
elementor
/
data
/
base
<?php namespace Elementor\Data\Base; abstract class Processor { /** * Controller. * * @var \Elementor\Data\Base\Controller */ private $controller; /** * Processor constructor. * * @param \Elementor\Data\Base\Controller $controller */ public function __construct( $controller ) { $this->controller = $controller; } /** * Get processor command. * * @return string */ abstract public function get_command(); }
[+]
processor
[+]
..
[-] controller.php
[edit]
[-] endpoint.php
[edit]
[-] sub-endpoint.php
[edit]
[-] processor.php
[edit]