Performed using
find . -name \*.php -exec sed -i -e :a -e '/./,$!d;/^\n*$/{$d;N;};/\n$/ba' {} \;
Change-Id: I5d0627f94c73690cf3a8a453539c22c760c2aa60
8 lines
181 B
PHP
8 lines
181 B
PHP
<?php
|
|
/**
|
|
* Exception representing a failure to serialize or unserialize a content object.
|
|
*
|
|
* @ingroup Content
|
|
*/
|
|
class MWContentSerializationException extends MWException {
|
|
}
|