23 lines
431 B
PHP
23 lines
431 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Webkul\Velocity\Http\Controllers\Admin;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Category Controller
|
||
|
|
*
|
||
|
|
* @author Shubham Mehrotra <shubhammehrotra.symfony@webkul.com> @shubhwebkul
|
||
|
|
* @copyright 2019 Webkul Software Pvt Ltd (http://www.webkul.com)
|
||
|
|
*/
|
||
|
|
|
||
|
|
class ConfigurationController extends Controller
|
||
|
|
{
|
||
|
|
public function __contruct()
|
||
|
|
{
|
||
|
|
dd("called");
|
||
|
|
}
|
||
|
|
|
||
|
|
public function storeMetaData()
|
||
|
|
{
|
||
|
|
dd("called");
|
||
|
|
}
|
||
|
|
}
|