Code Duplication    Length = 3-3 lines in 2 locations

src/lib/IntegerNet/Anonymizer/Updater.php 2 locations

@@ 93-95 (lines=3) @@
90
91
    private function outputStart()
92
    {
93
        if (is_resource($this->outputStream) && get_resource_type($this->outputStream) === 'stream') {
94
            fwrite($this->outputStream, sprintf("Updater started at %s.\n", date('H:i:s')));
95
        }
96
    }
97
98
    /**
@@ 115-117 (lines=3) @@
112
113
    private function outputDone()
114
    {
115
        if (is_resource($this->outputStream) && get_resource_type($this->outputStream) === 'stream') {
116
            fwrite($this->outputStream, sprintf("\nUpdater finished at %s.\n\n", date('H:i:s')));
117
        }
118
    }
119
}