\App\Console\CommandsParseEmailTicketMessages

Summary

Methods
Properties
Constants
__construct()
handle()
No public properties found
No constants found
No protected methods found
$signature
$description
$imapPath
$login
$pass
$attachmentsDir
$serverEncoding
$allowedTags
$emailSubjectPattern
$searchMailbox
N/A
No private methods found
No private properties found
N/A

Properties

$signature

$signature : string

The name and signature of the console command.

This includes the name and signature of the command, this is what will be called when running the command to perform the task behind it. Very unique, more of an ID for each command.

Type

string

$description

$description : string

The console command description.

Basically, it is the description of what your command will do.

Type

string

$imapPath

$imapPath : 

php-imap configurations

Type

$login

$login : 

Type

$pass

$pass : 

Type

$attachmentsDir

$attachmentsDir : 

Type

$serverEncoding

$serverEncoding : 

Type

$allowedTags

$allowedTags : string

Tags, that won't be stripped by strip_tags()

Type

string

$emailSubjectPattern

$emailSubjectPattern : 

Type

$searchMailbox

$searchMailbox : string

UNSEEN or ALL or UNSEEN SUBJECT "Ticket"

Type

string

Methods

__construct()

__construct() : void

Create a new command instance.

handle()

handle() : mixed

Execute the console command.

Inside this part, it is where your magic code for doing something will be placed, for instance: DB::table('users')->delete(4);

Returns

mixed