Skip to content

Commit

Permalink
Add missing getters/setters for DumpDataOperation
Browse files Browse the repository at this point in the history
  • Loading branch information
baikunz committed Apr 6, 2013
1 parent 8cf8a44 commit 674c470
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions src/Shuble/Slurpy/Operation/DumpDataOperation.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,52 @@ public function getName()

return $name;
}

/**
* Sets whether this operation should dump data for fields or not
*
* @param boolean $fields
*
* @return DumpDataOperation
*/
public function setFields($fields)
{
$this->fields = (boolean) $fields;

return $this;
}

/**
* Gets whether this operation should dump data for fields or not
*
* @return boolean
*/
public function getFields()
{
return $this->fields;
}

/**
* Sets whether this operation should dump data as utf8 or not
*
* @param boolean $utf8
*
* @return DumpDataOperation
*/
public function setUtf8($utf8)
{
$this->utf8 = (boolean) $utf8;

return $this;
}

/**
* Gets whether this operation should dump data as utf8 or not
*
* @return boolean
*/
public function getUtf8()
{
return $this->utf8;
}
}

0 comments on commit 674c470

Please sign in to comment.