brokeyourbike/laravel-package-template

View on GitHub
src/ReplaceMe.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

// Copyright (C) 2021 Ivan Stasiuk <brokeyourbike@gmail.com>.
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.

namespace BrokeYourBike\LaravelPackageTemplate;

/**
 * @author Ivan Stasiuk <brokeyourbike@gmail.com>
 */
class ReplaceMe
{
    public function ping(): string
    {
        return 'pong';
    }
}