bitandblack/sentence-construction

Creates nice sentences

2.0.0 2022-06-03 12:26 UTC

This package is auto-updated.

Last update: 2024-03-30 00:19:01 UTC


README

PHP from Packagist Codacy Badge Latest Stable Version Total Downloads License

Sentence construction

Creates nice sentences.

Installation

This library is made for the use with Composer. Add it to your project by running $ composer require bitandblack/sentence-construction.

Usage

Just call the method like that:

<?php

use BitAndBlack\SentenceConstruction;

$fruits = [
    'Apples', 
    'Bananas', 
    'Pears'
];

$sentence = new SentenceConstruction(', ', ' and ', $fruits);

var_dump('I like ' . $sentence);

This will dump I like Apples, Bananas and Pears.

Help

If you have any questions, feel free to contact us under hello@bitandblack.com.

Further information about Bit&Black can be found under www.bitandblack.com.