関数の引数型を書き換えていく
function canContain(& $obj)
を
function canContain($obj)
にしていく
Strict Standards: Declaration of Align::canContain() should be compatible with Element::canContain($obj) in [DocumentRoot]/pukiwiki/lib/convert_html.php on line "xxx"
# vi [DocumentRoot]/pukiwiki/lib/convert_html.php
このエラーは書き換える内容が全て同じなので、書き換える箇所が属するクラスのみ記載
該当関数の引数型を上記の様に書き換えていく
編集にviを使っているなら、sedコマンドで入れ替える事推奨。楽なので