diff --git a/src/BuilderInterface.php b/src/BuilderInterface.php index ed260e1..d338651 100644 --- a/src/BuilderInterface.php +++ b/src/BuilderInterface.php @@ -29,29 +29,6 @@ public function addBehavior($slug, $strategy, array $args = []); */ public function defaultBehavior($strategy, array $args = []); - /** - * Add a value to be returned when the builder is executed. - * - * Value will only be returned if it is enabled for the user's bucket. - * - * @param string $slug - * @param mixed $value - * - * @return \Zumba\Swivel\BuilderInterface - */ - public function addValue($slug, $value); - - /** - * Add a default value. - * - * Will be used if all other behaviors and values are not enabled for the user's bucket. - * - * @param mixed $value - * - * @return \Zumba\Swivel\BuilderInterface - */ - public function defaultValue($value); - /** * Creates a new Behavior object with an attached strategy. *