buriti8/divide-two-parts

Print YES, if it can divide something into two parts

1.0.2 2022-06-14 20:03 UTC

This package is not auto-updated.

Last update: 2025-06-12 09:30:49 UTC


README

Print YES, if you can divide something into two parts

Installation

This project using composer.

$ composer require buriti8/divide-two-parts

Usage

Validate if you can divide something into two parts.

<?php

use DivideTwoParts\Divide;

$divide = new Divide(10);

echo $divide->validate();