22
33declare (strict_types=1 );
44
5- namespace Number ;
5+ namespace MadeByBob \ Number ;
66
7- use Number \Exception \DecimalExponentError ;
8- use Number \Exception \DivisionByZeroError ;
9- use Number \Exception \InvalidNumberInputTypeException ;
10- use Number \Exception \InvalidRoundingModeException ;
7+ use MadeByBob \ Number \Exception \DecimalExponentError ;
8+ use MadeByBob \ Number \Exception \DivisionByZeroError ;
9+ use MadeByBob \ Number \Exception \InvalidNumberInputTypeException ;
10+ use MadeByBob \ Number \Exception \InvalidRoundingModeException ;
1111
1212abstract class AbstractNumber
1313{
@@ -112,7 +112,7 @@ public function minus($value, int $scale = null): self
112112 *
113113 * Example:
114114 * ```
115- * $divided = (new Number('200.000'))->divide($value, null, '0.0000')
115+ * $divided = (new MadeByBob\ Number('200.000'))->divide($value, null, '0.0000')
116116 * ```
117117 *
118118 * @param AbstractNumber|string|float|int $value
@@ -406,7 +406,7 @@ public function parent(): ?self
406406 }
407407
408408 /**
409- * Converts the current Number instance into a string.
409+ * Converts the current MadeByBob\ Number instance into a string.
410410 */
411411 public function toString (int $ scale = null ): string
412412 {
@@ -416,7 +416,7 @@ public function toString(int $scale = null): string
416416 }
417417
418418 /**
419- * Converts the current Number instance into a string.
419+ * Converts the current MadeByBob\ Number instance into a string.
420420 */
421421 public function __toString (): string
422422 {
@@ -432,7 +432,7 @@ protected function get(): string
432432 }
433433
434434 /**
435- * @internal Provides an instance of Number based on the input. Supports multiple input data types.
435+ * @internal Provides an instance of MadeByBob\ Number based on the input. Supports multiple input data types.
436436 *
437437 * @param AbstractNumber|string|float|int $value
438438 */
0 commit comments