Issues (19)

src/Operation/StringOperation/CountWords.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * This file is part of the sauls/helpers package.
4
 *
5
 * @author    Saulius Vaičeliūnas <[email protected]>
6
 * @link      http://saulius.vaiceliunas.lt
7
 * @copyright 2018
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
namespace Sauls\Component\Helper\Operation\StringOperation;
14
15
class CountWords implements CountWordsInterface
16
{
17 4
    public function execute(string $value): int
18
    {
19 4
        return \count(preg_split('/\s+/u', $value, null, PREG_SPLIT_NO_EMPTY));
0 ignored issues
show
It seems like preg_split('/\s+/u', $va...on\PREG_SPLIT_NO_EMPTY) can also be of type false; however, parameter $var of count() does only seem to accept Countable|array, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

19
        return \count(/** @scrutinizer ignore-type */ preg_split('/\s+/u', $value, null, PREG_SPLIT_NO_EMPTY));
Loading history...
20
    }
21
}
22