From 3573dbdbccef81834cc4b16e341881eeb352b329 Mon Sep 17 00:00:00 2001 From: Stephen Young Date: Wed, 12 Dec 2018 15:15:34 -0500 Subject: [PATCH] Remove new interface methods. These are backwards incompatable with the previous patch version. The new version 3.0.0 keeps these methods in the interface and is the new master. --- src/BuilderInterface.php | 23 ----------------------- 1 file changed, 23 deletions(-) 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. *