Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/dev/tests/integration/framework/Magento/TestFramework/Workaround/
Upload File :
Current File : //home/rtorresani/www/dev/tests/integration/framework/Magento/TestFramework/Workaround/Segfault.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/**
 * Workaround for occasional non-zero exit code (exec returned: 139) caused by the PHP bug
 */
namespace Magento\TestFramework\Workaround;

class Segfault
{
    /**
     * Force garbage collection
     */
    public function endTestSuite()
    {
        gc_collect_cycles();
    }
}