Index of /lpage-fluessiggas/vendor/webignition/disallowed-character-terminated-string

[ICO]NameLast modifiedSizeDescription

[PARENTDIR]Parent Directory   -  
[TXT]LICENSE 2023-04-17 22:07 1.0K 
[   ]composer.json 2023-04-17 22:07 1.3K 
[TXT]composer.lock 2023-04-17 22:07 58K 
[   ]phpstan.neon 2023-04-17 22:07 398  
[   ]phpunit.xml.dist 2023-04-17 22:07 915  
[DIR]src/ 2023-04-17 22:07 -  
[DIR]tests/ 2023-04-17 22:07 -  

Disallowed Character Terminated String [![Build Status](https://secure.travis-ci.org/webignition/disallowed-character-terminated-string.png?branch=master)](http://travis-ci.org/webignition/disallowed-character-terminated-string)
====================================

Overview
---------

A given string will be terminated when reaching the first of one or more specified
terminating characters.

Useful when stripping out end-of-line comments or when discarding whatever follows
a line return.

Example Usage
---------------

```php
<?php

use webignition\DisallowedCharacterTerminatedString\TerminatedString;

$string = new TerminatedString('value #comment', ['#']);

$this->assertEquals('value ', $string->get());
```

Installation and Updating
-------------------------

```
composer require webignition/disallowed-character-terminated-string
composer update webignition/disallowed-character-terminated-string
```

Testing
-------

To run tests:

`composer test`

To run code quality checks:

`composer cs`

To run static analysis:

`composer static-analysis`

To run all test and analyses:

`composer ci`

Have look at the [project on travis][4] for the latest build status, or give the tests
a go yourself.

[4]: http://travis-ci.org/webignition/disallowed-character-terminated-string/builds