README.md

Summary

Maintainability
Test Coverage
# pretty heredoc
[![Build Status](https://travis-ci.org/sadovnik/ph.svg?branch=master)](https://travis-ci.org/sadovnik/ph)
[![Code Climate](https://codeclimate.com/github/sadovnik/ph/badges/gpa.svg)](https://codeclimate.com/github/sadovnik/ph)
[![Test Coverage](https://codeclimate.com/github/sadovnik/ph/badges/coverage.svg)](https://codeclimate.com/github/sadovnik/ph/coverage)
[![Issue Count](https://codeclimate.com/github/sadovnik/ph/badges/issue_count.svg)](https://codeclimate.com/github/sadovnik/ph)

It's painful to write heredocs in the middle of some indentation level:
```php
class CliApp
{
    public static function printUsage()
    {
        echo <<<EOL
Usage:
    linter [--fix] [--debug] <path>
    linter (-h | --help)
    linter --version
EOL;
    }
}
```

Ruby has smart heredocs that respect indentation:
```ruby
class CliApp
  def self.print_usage
    puts <<~EOL
      Usage:
          linter [--fix] [--debug] <path>
          linter (-h | --help)
          linter --version
    EOL
  end
end
```

But PHP has not.

So I made a basic function that receives string and strips it:
```php

use function Sadovnik\PrettyHeredoc\ph as ✍️;

class CliApp
{
    public static function printUsage()
    {
        echo ✍️('
            Usage:
                linter [--fix] [--debug] <path>
                linter (-h | --help)
                linter --version
        ');
    }
}
```

Enjoy it!

## Install
Via Composer:
```
composer require sadovnik/ph
```

⚓️