This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This is the model class for table "applicant". | |
* | |
* The followings are the available columns in table 'applicant': | |
* @property string $position | |
* @property integer $id | |
* @property string $fullName | |
* @property string $nickName |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
application/x-httpd-php JobController.php | |
C++ source, ASCII text | |
<?php | |
class JobController extends Controller { | |
public function filters() { | |
return array( | |
'accessControl - login', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head><b>New Incident Report has been created</b></head> | |
<body> | |
<p>Id : 2103</p> | |
<p><b>Summary</b></p> | |
<table> | |
<tr> | |
<td>Type</td> | |
<td>:</td> | |
<td>Reservation</td> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Bundle\TransactionBundle\Manager; | |
use App\Bundle\ProductBundle\Filter\ProductCategoryFilter; | |
use App\Bundle\ProductBundle\Repository\ProductCategoryRepository; | |
use App\Bundle\ProductBundle\Repository\ProductRepository; | |
use App\Bundle\ReportBundle\Filter\ReportFilter; | |
use App\Bundle\TransactionBundle\Entity\PaymentType; | |
use App\Bundle\TransactionBundle\Filter\TransactionFilter; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Bundle\TransactionBundle\Subscriber; | |
use App\Bundle\TransactionBundle\Entity\TransactionHistory; | |
use App\Bundle\TransactionBundle\Event\TransactionHistoryEvent; | |
use App\Bundle\TransactionBundle\Manager\TransactionHistoryManager; | |
use App\Bundle\TransactionBundle\TransactionHistoryEvents; | |
use Symfony\Component\EventDispatcher\EventSubscriberInterface; |