Skip to content

Instantly share code, notes, and snippets.

@linxlad
Forked from rianorie/gist:2bde62576f0d799370d0
Last active August 29, 2015 14:08
Show Gist options
  • Save linxlad/68136ce63f53e9ef2a7c to your computer and use it in GitHub Desktop.
Save linxlad/68136ce63f53e9ef2a7c to your computer and use it in GitHub Desktop.
<?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