mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-06-01 04:06:12 -04:00
- Create MailchimpController class - Refactor Mailchimp_lib class to MailchimpLibrary - Deleted useless PHPdocs - Refactored MailchimpConnector class into its own library class - Refactored out hungarian notation - PSR compliant naming changes Signed-off-by: objec <objecttothis@gmail.com>
11 lines
156 B
PHP
11 lines
156 B
PHP
<?php
|
|
|
|
namespace App\Plugins\MailchimpPlugin\Controllers;
|
|
|
|
use App\Controllers\Secure_Controller;
|
|
|
|
class MailchimpController extends Secure_Controller
|
|
{
|
|
|
|
}
|