Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix for #84 #85

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 19 additions & 29 deletions src/NestedSetsBehavior.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,79 +72,69 @@ public function events()
/**
* Creates the root node if the active record is new or moves it
* as the root node.
* @param boolean $runValidation
* @param array $attributes
* @return boolean
* @return ActiveRecord
*/
public function makeRoot($runValidation = true, $attributes = null)
public function makeRoot()
{
$this->operation = self::OPERATION_MAKE_ROOT;

return $this->owner->save($runValidation, $attributes);
return $this->owner;
}

/**
* Creates a node as the first child of the target node if the active
* record is new or moves it as the first child of the target node.
* @param ActiveRecord $node
* @param boolean $runValidation
* @param array $attributes
* @return boolean
* @param $node
* @return ActiveRecord
*/
public function prependTo($node, $runValidation = true, $attributes = null)
public function prependTo($node)
{
$this->operation = self::OPERATION_PREPEND_TO;
$this->node = $node;

return $this->owner->save($runValidation, $attributes);
return $this->owner;
}

/**
* Creates a node as the last child of the target node if the active
* record is new or moves it as the last child of the target node.
* @param ActiveRecord $node
* @param boolean $runValidation
* @param array $attributes
* @return boolean
* @param $node
* @return ActiveRecord
*/
public function appendTo($node, $runValidation = true, $attributes = null)
public function appendTo($node)
{
$this->operation = self::OPERATION_APPEND_TO;
$this->node = $node;

return $this->owner->save($runValidation, $attributes);
return $this->owner;
}

/**
* Creates a node as the previous sibling of the target node if the active
* record is new or moves it as the previous sibling of the target node.
* @param ActiveRecord $node
* @param boolean $runValidation
* @param array $attributes
* @return boolean
* @param $node
* @return ActiveRecord
*/
public function insertBefore($node, $runValidation = true, $attributes = null)
public function insertBefore($node)
{
$this->operation = self::OPERATION_INSERT_BEFORE;
$this->node = $node;

return $this->owner->save($runValidation, $attributes);
return $this->owner;
}

/**
* Creates a node as the next sibling of the target node if the active
* record is new or moves it as the next sibling of the target node.
* @param ActiveRecord $node
* @param boolean $runValidation
* @param array $attributes
* @return boolean
* @param $node
* @return ActiveRecord
*/
public function insertAfter($node, $runValidation = true, $attributes = null)
public function insertAfter($node)
{
$this->operation = self::OPERATION_INSERT_AFTER;
$this->node = $node;

return $this->owner->save($runValidation, $attributes);
return $this->owner;
}

/**
Expand Down
Loading