-
-
Save linxlad/68136ce63f53e9ef2a7c to your computer and use it in GitHub Desktop.
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 | |
class CsvTableLogHandler extends \Phalcon\Mvc\Model | |
{ | |
private $table; | |
public function __construct($tableName) | |
{ | |
$this->table = $tableName; | |
parent::__construct(); | |
} | |
public function initialize() | |
{ | |
$this->setSource($this->table); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment