MongoInt32.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /*
  3. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  4. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  5. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  6. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  7. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  8. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  9. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  10. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  11. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  12. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  13. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  14. */
  15. use Alcaeus\MongoDbAdapter\TypeInterface;
  16. class MongoInt32 implements TypeInterface
  17. {
  18. /**
  19. * @link http://php.net/manual/en/class.mongoint32.php#mongoint32.props.value
  20. * @var string
  21. */
  22. public $value;
  23. /**
  24. * Creates a new 32-bit number with the given value.
  25. *
  26. * @link http://php.net/manual/en/mongoint32.construct.php
  27. * @param string $value A number
  28. */
  29. public function __construct($value)
  30. {
  31. $this->value = (string) $value;
  32. }
  33. /**
  34. * @return string
  35. */
  36. public function __toString()
  37. {
  38. return (string) $this->value;
  39. }
  40. /**
  41. * Converts this MongoInt32 to a native integer
  42. *
  43. * @return int
  44. * @internal This method is not part of the ext-mongo API
  45. */
  46. public function toBSONType()
  47. {
  48. return (int) $this->value;
  49. }
  50. }