Skip to content

Commit

Permalink
UseCaseProtocol の typo 修正 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
CH3COOH authored Aug 11, 2023
1 parent faab88d commit 4c88e44
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions TodoNote/TodoNote.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
AAE79FBF2A80FD2F009823FB /* CheckVersionUseCaseInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAE79FB92A80FD2F009823FB /* CheckVersionUseCaseInput.swift */; };
AAE79FC02A80FD2F009823FB /* CheckVersionUseCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAE79FBA2A80FD2F009823FB /* CheckVersionUseCase.swift */; };
AAE79FC12A80FD2F009823FB /* CheckVersionUseCaseResult.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAE79FBB2A80FD2F009823FB /* CheckVersionUseCaseResult.swift */; };
AAE79FC42A80FDA6009823FB /* UseCaseProctol.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAE79FC32A80FDA6009823FB /* UseCaseProctol.swift */; };
AAE79FC42A80FDA6009823FB /* UseCaseProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAE79FC32A80FDA6009823FB /* UseCaseProtocol.swift */; };
AAE79FC82A80FFBB009823FB /* AppTitleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAE79FC72A80FFBB009823FB /* AppTitleView.swift */; };
AAE79FCA2A810175009823FB /* HomeEmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAE79FC92A810175009823FB /* HomeEmptyView.swift */; };
AAE79FCE2A810444009823FB /* EditTodoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAE79FCD2A810444009823FB /* EditTodoView.swift */; };
Expand Down Expand Up @@ -163,7 +163,7 @@
AAE79FB92A80FD2F009823FB /* CheckVersionUseCaseInput.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CheckVersionUseCaseInput.swift; sourceTree = "<group>"; };
AAE79FBA2A80FD2F009823FB /* CheckVersionUseCase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CheckVersionUseCase.swift; sourceTree = "<group>"; };
AAE79FBB2A80FD2F009823FB /* CheckVersionUseCaseResult.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CheckVersionUseCaseResult.swift; sourceTree = "<group>"; };
AAE79FC32A80FDA6009823FB /* UseCaseProctol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UseCaseProctol.swift; sourceTree = "<group>"; };
AAE79FC32A80FDA6009823FB /* UseCaseProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UseCaseProtocol.swift; sourceTree = "<group>"; };
AAE79FC72A80FFBB009823FB /* AppTitleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppTitleView.swift; sourceTree = "<group>"; };
AAE79FC92A810175009823FB /* HomeEmptyView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeEmptyView.swift; sourceTree = "<group>"; };
AAE79FCD2A810444009823FB /* EditTodoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditTodoView.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -507,7 +507,7 @@
AAE79FAD2A80E8DB009823FB /* UseCase */ = {
isa = PBXGroup;
children = (
AAE79FC32A80FDA6009823FB /* UseCaseProctol.swift */,
AAE79FC32A80FDA6009823FB /* UseCaseProtocol.swift */,
AAE79FB32A80FD2F009823FB /* Launch */,
AA19328C2A837A11002C846F /* SignOut */,
AA1932832A830F5B002C846F /* SyncReadyTodo */,
Expand Down Expand Up @@ -957,7 +957,7 @@
AA1932732A8248AB002C846F /* LoginViewModel.swift in Sources */,
AAE79FB22A80FAE1009823FB /* RegistrationStatus.swift in Sources */,
AA1932752A824B7C002C846F /* TodoItemView.swift in Sources */,
AAE79FC42A80FDA6009823FB /* UseCaseProctol.swift in Sources */,
AAE79FC42A80FDA6009823FB /* UseCaseProtocol.swift in Sources */,
AAE79F7F2A80E0E0009823FB /* UIAppearanceUtil.swift in Sources */,
AA1932892A830F5B002C846F /* SyncReadyTodoUseCaseResult.swift in Sources */,
AAE79FA12A80E543009823FB /* ListItemView.swift in Sources */,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation

class CheckVersionUseCase: UseCaseProctol {
class CheckVersionUseCase: UseCaseProtocol {
func execute(_: CheckVersionUseCaseInput) async -> CheckVersionUseCaseResult {
return await checkVersion()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import FirebaseAuth
import Foundation

class LaunchUseCase: UseCaseProctol {
class LaunchUseCase: UseCaseProtocol {
let todoRepository: TodoRepository

let checkVersionUseCase = CheckVersionUseCase()
Expand Down
2 changes: 1 addition & 1 deletion TodoNote/TodoNote/UseCase/SignOut/SignOutUseCase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import FirebaseAuth

/// BL-S02 ログアウト
class SignOutUseCase: UseCaseProctol {
class SignOutUseCase: UseCaseProtocol {
private let todoRepository: TodoRepository

private let syncReadyTodoUseCase: SyncReadyTodoUseCase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import FirebaseFirestore
import Foundation

/// BL-Z01 データの同期
class SyncReadyTodoUseCase: UseCaseProctol {
class SyncReadyTodoUseCase: UseCaseProtocol {
private let todoRepository: TodoRepository
private let firestore = Firestore.firestore()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation

class UpdateTodoUseCase: UseCaseProctol {
class UpdateTodoUseCase: UseCaseProtocol {
private let resitory: TodoRepository

init(resitory: TodoRepository = TodoRepository()) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//
// UseCaseProctol.swift
// UseCaseProtocol.swift
//
// Created by KENJIWADA on 2023/08/07.
//

protocol UseCaseProctol<Input, Output> {
protocol UseCaseProtocol<Input, Output> {
associatedtype Input
associatedtype Output

Expand Down

0 comments on commit 4c88e44

Please sign in to comment.