for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the humbug/php-scoper package.
*
* Copyright (c) 2017 Théo FIDRY <[email protected]>,
* Pádraic Brady <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Humbug\PhpScoper\PhpParser;
use Humbug\PhpScoper\Scoper\PhpScoper;
use PhpParser\Error as PhpParserError;
use PhpParser\Node\Scalar\String_;
use function Safe\substr;
/**
* @private
final class StringNodePrefixer
{
private PhpScoper $scoper;
public function __construct(PhpScoper $scoper)
$this->scoper = $scoper;
}
public function prefixStringValue(String_ $node): void
try {
$lastChar = substr($node->value, -1);
Safe\substr()
If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated annotation
ignore-deprecated
$lastChar = /** @scrutinizer ignore-deprecated */ substr($node->value, -1);
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.
$newValue = $this->scoper->scopePhp($node->value);
if ("\n" !== $lastChar) {
$newValue = substr($newValue, 0, -1);
$newValue = /** @scrutinizer ignore-deprecated */ substr($newValue, 0, -1);
$node->value = $newValue;
} catch (PhpParserError $error) {
// Continue without scoping the heredoc which for some reasons contains invalid PHP code
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.