Database abstraction
This commit is contained in:
16
core/Driver/SQL/Strategy/UpdateStrategy.class.php
Normal file
16
core/Driver/SQL/Strategy/UpdateStrategy.class.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Driver\SQL\Strategy;
|
||||
|
||||
class UpdateStrategy extends Strategy {
|
||||
|
||||
private $values;
|
||||
|
||||
public function __construct($values) {
|
||||
$this->values = $values;
|
||||
}
|
||||
|
||||
public function getValues() { return $this->values; }
|
||||
};
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user