view vendor/consolidation/output-formatters/test.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
line wrap: on
line source
<?php

use Consolidation\OutputFormatters\Transformations\WordWrapper;

include 'vendor/autoload.php';

$wrapper = new WordWrapper(78);

$data = [
    'name' => ['Name', ':', 'Rex', ],
    'species' => ['Species', ':', 'dog', ],
    'food' => ['Food', ':', 'kibble', ],
    'legs' => ['Legs', ':', '4', ],
    'description' => ['Description', ':', 'Rex is a very good dog, Brett. He likes kibble, and has four legs.', ],
];

$result = $wrapper->wrap($data);

var_export($result);