phpfmt8 icon indicating copy to clipboard operation
phpfmt8 copied to clipboard

Added visibility

Open driade opened this issue 3 months ago • 0 comments

This code gets added a "public" visibility in "function iso88591ToUtf8($s)"

<?php
namespace {
    class ConsoleOutput extends StreamOutput
    {
        public function __construct()
        {
        }
    }
}

namespace {
    class ProgressBar
    {
    }
    if (! function_exists("iso88591ToUtf8")) {
         function iso88591ToUtf8($s)
        {
        }
    }
}

driade avatar Mar 12 '24 21:03 driade