mjpearson / Pandra

Cassandra abstraction layer and keyspace scaffolder for PHP developers --- ABANDONED.
GNU Lesser General Public License v3.0
93 stars 11 forks source link

Minor bug in ColumnContainer.class.php (Line 254) #31

Closed jlaprise closed 14 years ago

jlaprise commented 14 years ago
/**
 * autoCreate mutator
 * @param bool $autoCreate new mode
 */
public function setAutoCreate(bool $autoCreate) {
    $this->$_autoCreate = $autoCreate;
}

should be:

$this->_autoCreate = $autoCreate;

mjpearson commented 14 years ago

Hi, this was fixed in http://github.com/mjpearson/Pandra/commit/8f47e87a851d412bc4e99c22470c4a53535c88c2#diff-1

Latest head should be fine :)