diff options
| author | Sebastian Schmelzer | 2012-01-11 15:59:04 +0100 |
|---|---|---|
| committer | Sebastian Schmelzer | 2012-01-11 15:59:04 +0100 |
| commit | ac7df5d8551cbacf60f9adc770783a710737fa90 (patch) | |
| tree | 6d4823587c44e1e5551a191e6a86547b41a52320 /application/models/PoolMapper.php | |
| parent | fix stylecode output (diff) | |
| download | pbs2-ac7df5d8551cbacf60f9adc770783a710737fa90.tar.gz pbs2-ac7df5d8551cbacf60f9adc770783a710737fa90.tar.xz pbs2-ac7df5d8551cbacf60f9adc770783a710737fa90.zip | |
fix stupid checkstyle bugs .. once again..
Diffstat (limited to 'application/models/PoolMapper.php')
| -rw-r--r-- | application/models/PoolMapper.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/application/models/PoolMapper.php b/application/models/PoolMapper.php index dbc1ae4..b42dc88 100644 --- a/application/models/PoolMapper.php +++ b/application/models/PoolMapper.php @@ -70,7 +70,7 @@ class Application_Model_PoolMapper { } public function getDbTable() { - if (null == = $this->_dbTable) { + if (null === $this->_dbTable) { $this->setDbTable('Application_Model_DbTable_Pool'); } @@ -85,7 +85,7 @@ class Application_Model_PoolMapper { 'description' => $pol->getDescription() , 'location' => $pol->getLocation() ); - if (null == = ($id = $pol->getID()) ) { + if (null === ($id = $pol->getID()) ) { unset($data['poolID']); $this->getDbTable()->insert($data); } else { @@ -94,7 +94,7 @@ class Application_Model_PoolMapper { } public function delete(Application_Model_Pool $pol) { - if (null == = ($id = $pol->getID()) ) { + if (null === ($id = $pol->getID()) ) { return; } else { $this->getDbTable()->delete(array('poolID = ?' => $id)); |
