php-yaoi/php-yaoi

View on GitHub
src/String/Quoter/DoubleQuote.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Yaoi\String\Quoter;

use Yaoi\String\Quoter;

class DoubleQuote implements Quoter
{
    public function quote($value)
    {
        return '"' . str_replace('"', '\\"', $value) . '"';
    }

}